/* =========================
   Gravita Labs — styles.css
   Modelo: confiança B2B (clean, claro, moderno)
   ========================= */

:root {
  --bg: #f8fafc;
  --surface: #ffffff;
  --muted: #f1f5f9;
  --text: #0f172a;
  --text-2: #475569;
  --border: #e2e8f0;

  --primary: #2563eb;
  --primary-2: #1e40af;
  --secondary: #0ea5e9;

  --success: #16a34a;

  --shadow-sm: 0 6px 18px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 10px 30px rgba(15, 23, 42, 0.08);

  --radius: 14px;
  --radius-sm: 10px;

  --container: 1120px;
}

/* Reset básico */
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  padding-left: 1.2rem;
}
strong {
  font-weight: 600;
}
/*Main*/
.gl-main {
  display: block;
}

/* Container */
.gl-container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

/* Helpers */
.gl-divider {
  height: 1px;
  background: var(--border);
  margin: 18px 0;
}
.gl-note {
  margin: 14px 0 35px 0;
  color: var(--text-2);
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.gl-note i {
  margin-top: 3px;
  color: var(--primary);
}

/* =========================
   Topbar
   ========================= */
.gl-topbar {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}
.gl-topbar__content {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  align-items: center;
}
.gl-topbar__right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.gl-topbar__link {
  opacity: 0.95;
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.gl-topbar__link:hover {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.gl-topbar__dot {
  opacity: 0.5;
}
.gl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

/* =========================
   Header / Nav
   ========================= */
.gl-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgb(255 255 255 / 85%);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.gl-header__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.gl-logo img {
  width: 170px;
  height: auto;
}

.gl-nav {
  position: relative;
}

.gl-nav__toggle {
  display: none;
  width: 44px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.gl-nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
  border-radius: 2px;
}

.gl-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 14px;
}
.gl-nav__link {
  color: var(--text-2);
  font-weight: 500;
  padding: 10px 10px;
  border-radius: 10px;
}
.gl-nav__link:hover {
  color: var(--text);
  background: rgba(37, 99, 235, 0.06);
}

/* =========================
   Buttons
   ========================= */
.gl-button {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 600;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.06s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease;
  user-select: none;
}
.gl-button:active {
  transform: translateY(1px);
}
.gl-button--small {
  padding: 10px 14px;
  border-radius: 12px;
}

.gl-button--primary {
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  color: #fff;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.22);
}
.gl-button--primary:hover {
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.26);
}

.gl-button--secondary {
  background: rgba(14, 165, 233, 0.12);
  border-color: rgba(14, 165, 233, 0.28);
  color: #0b1220;
}
.gl-button--secondary:hover {
  background: rgba(14, 165, 233, 0.18);
  border-color: rgba(14, 165, 233, 0.4);
}

.gl-button--ghost {
  background: transparent;
  border-color: var(--border);
  color: var(--text);
}
.gl-button--ghost:hover {
  background: rgba(15, 23, 42, 0.04);
}

.gl-button--full {
  width: 100%;
  margin-top: 64px;
}

/* =========================
   Hero
   ========================= */
.gl-hero {
  padding: 52px 0 34px;
  background:
    radial-gradient(
      900px 300px at 10% 10%,
      rgba(37, 99, 235, 0.14),
      transparent 60%
    ),
    radial-gradient(
      700px 260px at 90% 20%,
      rgba(14, 165, 233, 0.12),
      transparent 60%
    ),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}

.gl-hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.gl-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-weight: 600;
  color: rgba(30, 64, 175, 0.95);
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.18);
  padding: 8px 12px;
  border-radius: 999px;
}

.gl-hero__title {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3.2vw, 2.65rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.gl-hero__subtitle {
  margin: 0 0 18px;
  color: var(--text-2);
  font-size: 1.05rem;
  max-width: 62ch;
}

.gl-hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 18px 0 20px;
}

.gl-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gl-trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.gl-trust-item i {
  color: var(--primary);
  margin-top: 2px;
}
.gl-trust-item span {
  font-size: 0.93rem;
  color: var(--text-2);
}
.gl-trust-item strong {
  color: var(--text);
}

/* =========================
   Cards
   ========================= */
.gl-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 18px;
}
.gl-card--shadow {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}
.gl-card--outline {
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.gl-card__title {
  margin: 0 0 12px;
  font-size: 1.05rem;
  letter-spacing: -0.01em;
}

/* Steps */
.gl-steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.gl-steps__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--radius-sm);
  background: rgba(15, 23, 42, 0.02);
  border: 1px solid var(--border);
}
.gl-steps__num {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(37, 99, 235, 0.12);
  color: rgba(30, 64, 175, 1);
  font-weight: 700;
  flex: 0 0 30px;
}
.gl-steps__item p {
  margin: 4px 0 0;
  color: var(--text-2);
  font-size: 0.95rem;
}

.gl-mini-cta {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}
.gl-mini-cta__text {
  margin: 0 0 10px;
  color: var(--text-2);
  font-size: 0.95rem;
}

/* =========================
   Sections
   ========================= */
.gl-section {
  padding: 54px 0;
}
.gl-section--muted {
  background: var(--muted);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.gl-section__header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.gl-section__title {
  margin: 0;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
}
.gl-section__subtitle {
  margin: 0;
  color: var(--text-2);
  max-width: 75ch;
}

/* Grid */
.gl-grid {
  display: grid;
  gap: 14px;
}
.gl-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.gl-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

/* =========================
   Services
   ========================= */
.gl-service {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease;
}
.gl-service:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.gl-service__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary-2);
  margin-bottom: 12px;
}
.gl-service__title {
  margin: 0 0 6px;
  font-size: 1.08rem;
}
.gl-service__desc {
  margin: 0 0 10px;
  color: var(--text-2);
  font-size: 0.97rem;
}
.gl-list {
  margin: 0;
  color: var(--text-2);
  font-size: 0.95rem;
}
.gl-list li {
  margin: 6px 0;
}

/* Callout */
.gl-callout {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.06);
}
.gl-callout h3 {
  margin: 0 0 6px;
}
.gl-callout p {
  margin: 0;
  color: var(--text-2);
}

/* =========================
   Projects
   ========================= */
.gl-project {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.12s ease,
    box-shadow 0.2s ease;
}
.gl-project:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.gl-project__thumb {
  height: 130px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(37, 99, 235, 0.18),
    rgba(14, 165, 233, 0.16)
  );
  color: rgba(30, 64, 175, 1);
  font-size: 1.6rem;
  object-fit: cover;
  object-position: center;
}
.gl-project__body {
  padding: 16px;
}
.gl-project__title {
  margin: 0 0 6px;
  font-size: 1.05rem;
}
.gl-project__desc {
  margin: 0 0 12px;
  color: var(--text-2);
  font-size: 0.95rem;
}
.gl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gl-tag {
  font-size: 0.82rem;
  color: rgba(30, 64, 175, 1);
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.18);
  padding: 6px 10px;
  border-radius: 999px;
}

/* Proof row */
.gl-proof {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gl-proof__item {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  color: var(--text-2);
}
.gl-proof__item i {
  color: var(--success);
}

/* =========================
   About
   ========================= */
.gl-about {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  align-items: start;
}
.gl-about__text {
  margin: 10px 0 0;
  color: var(--text-2);
  max-width: 75ch;
}
.gl-about__highlights {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.gl-mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: var(--shadow-sm);
}
.gl-mini-card p {
  margin: 6px 0 0;
  color: var(--text-2);
  font-size: 0.95rem;
}

/* Pills */
.gl-skill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.gl-pill {
  font-size: 0.85rem;
  color: var(--text);
  background: rgba(15, 23, 42, 0.04);
  border: 1px solid var(--border);
  padding: 7px 10px;
  border-radius: 999px;
}

/* =========================
   Contact
   ========================= */
.gl-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.gl-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(15, 23, 42, 0.02);
  margin-bottom: 12px;
}
.gl-contact-item__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(37, 99, 235, 0.12);
  color: var(--primary-2);
  flex: 0 0 44px;
}
.gl-contact-item__body p {
  margin: 6px 0 4px;
  color: var(--text-2);
  font-size: 0.95rem;
}

.gl-link {
  color: rgba(30, 64, 175, 1);
  font-weight: 600;
}
.gl-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gl-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.gl-checklist li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--text-2);
}
.gl-checklist i {
  color: var(--success);
  margin-top: 3px;
}

/* =========================
   Footer
   ========================= */
.gl-footer {
  background: #0b1220;
  color: rgba(255, 255, 255, 0.86);
  padding: 42px 0 20px;
}
.gl-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr 1fr;
  gap: 18px;
  align-items: start;
}
.gl-footer__text {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.68);
}
.gl-footer__col h4 {
  margin: 0 0 10px;
  font-size: 1rem;
}
.gl-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}
.gl-footer__col a {
  color: rgba(255, 255, 255, 0.78);
}
.gl-footer__col a:hover {
  color: rgba(255, 255, 255, 0.96);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.gl-footer__social {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.gl-icon-link {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}
.gl-icon-link:hover {
  background: rgba(255, 255, 255, 0.12);
}

.gl-footer__bottom {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.95rem;
}

/* =========================
   Floating CTA
   ========================= */
.gl-float-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 40px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #22c55e, #16a34a);
  color: #fff;
  box-shadow: 0 18px 36px rgba(22, 163, 74, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  z-index: 60;
}
.gl-float-cta:hover {
  box-shadow: 0 24px 48px rgba(22, 163, 74, 0.28);
}

/* =========================
   Responsive (Mobile)
   ========================= */
@media (max-width: 980px) {
  .gl-grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gl-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .gl-hero__grid {
    grid-template-columns: 1fr;
  }
  .gl-trust-row {
    grid-template-columns: 1fr;
  }
  .gl-proof {
    grid-template-columns: 1fr;
  }
  .gl-about {
    grid-template-columns: 1fr;
  }
  .gl-about__highlights {
    grid-template-columns: 1fr;
  }
  .gl-contact-grid {
    grid-template-columns: 1fr;
  }
  .gl-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .gl-hero {
    padding: 0;
  }
  .gl-section {
    padding: 24px 0;
  }
  .gl-topbar__content {
    flex-direction: column;
    align-items: flex-start;
    align-items: center;
  }

  .gl-callout {
    flex-direction: column;
  }

  .gl-grid--4 {
    grid-template-columns: repeat(1, 1fr);
  }
  .gl-grid--3 {
    grid-template-columns: repeat(1, 1fr);
  }

  .gl-topbar__right {
    justify-content: center;
  }

  .hero-lottie {
    display: none;
  }

  .gl-nav__toggle {
    display: inline-block;
  }

  /* Mobile menu */
  .gl-nav__list {
    position: absolute;
    right: 0;
    top: 54px;
    width: min(92vw, 360px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 12px;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .gl-nav__list.is-open {
    display: flex;
  }
  .gl-nav__link {
    padding: 12px 12px;
  }

  .gl-footer__grid {
    grid-template-columns: 1fr;
  }

  .gl-logo img {
    width: 150px;
  }
}

/* HERO compact */
.gl-hero--compact {
  padding: 26px 0 10px;
}

.gl-hero__title--compact {
  font-size: clamp(1.9rem, 3.6vw, 2.8rem);
  max-width: 22ch;
}

.gl-hero__subtitle--compact {
  max-width: 62ch;
  font-size: 1.05rem;
}

.gl-hero__proofline {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  color: var(--text-2);
  font-size: 0.95rem;
}

.gl-hero__proofline i {
  color: var(--success);
  margin-right: 8px;
}

/* Process simple (no cards) */
.gl-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gl-process__item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
}

.gl-process__item span {
  color: var(--text-2);
}

@media (max-width: 900px) {
  .gl-process {
    grid-template-columns: 1fr;
  }
}
.hero-lottie {
  width: 420px;
  max-width: 100%;
  height: 300px;
}

/* Carousel */
.gl-carousel {
  position: relative;
}

/* Marquee Carousel (loop real) */
.gl-marquee {
  overflow: hidden;
  position: relative;
}

.gl-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.gl-marquee__group {
  display: flex;
  gap: 16px;
  padding: 4px 4px 10px;
}

/* Cards dentro do marquee: define largura por breakpoint */
.gl-marquee .gl-project {
  flex: 0 0 calc(100% - 64px); /* mobile: 1 por vez */
}

@media (min-width: 720px) {
  .gl-marquee .gl-project {
    flex: 0 0 calc((1120px - 16px) / 2);
    max-width: calc((100vw - 40px - 16px) / 2);
  }
}

@media (min-width: 1040px) {
  .gl-marquee .gl-project {
    flex: 0 0 calc((1120px - 32px) / 3);
    max-width: calc((100vw - 40px - 32px) / 3);
  }
}

/* Pausa quando o usuário passa o mouse */
.gl-marquee.is-paused .gl-marquee__track {
  animation-play-state: paused;
}

/* Faz o card encaixar certinho no snap */
.gl-project {
  scroll-snap-align: start;
}

/* Card clicável */
.gl-project--link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  outline: none;
}
.gl-project--link:hover {
  transform: translateY(-2px);
}
.gl-project--link:focus-visible {
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.35);
  border-radius: 16px;
}

/* Nav buttons */
.gl-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 5;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 10px 24px;
}
.gl-carousel__nav--prev {
  left: -12px;
}
.gl-carousel__nav--next {
  right: -12px;
}

@media (max-width: 560px) {
  .gl-carousel__nav {
    display: none; /* no mobile deixa só swipe */
  }
}

/* Marquee (loop infinito) + drag */
.gl-marquee {
  overflow: hidden;
  position: relative;
  cursor: grab;
  user-select: none;
  touch-action: pan-y; /* permite scroll vertical da página */
}

.gl-marquee:active {
  cursor: grabbing;
}

.gl-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.gl-marquee__group {
  display: flex;
  gap: 16px;
  padding: 4px 4px 10px;
}

/* Largura dos cards por breakpoint */
.gl-marquee .gl-project {
  flex: 0 0 calc(100% - 64px); /* mobile: 1 por vez */
}

@media (min-width: 720px) {
  .gl-marquee .gl-project {
    flex: 0 0 calc((100% - 16px) / 2); /* 2 por vez */
  }
}

@media (min-width: 1040px) {
  .gl-marquee .gl-project {
    flex: 0 0 calc((100% - 32px) / 3); /* 3 por vez */
  }
}

/* Evita clique acidental quando estiver arrastando */
.gl-marquee.is-dragging a {
  pointer-events: none;
}

.gl-process-section {
  position: relative;
}

.gl-process {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

/* Linha conectando os passos */
.gl-process::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 8%;
  right: 8%;
  height: 2px;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.08),
    rgba(0, 0, 0, 0.12),
    rgba(0, 0, 0, 0.08)
  );
  z-index: 0;
}

.gl-process__item {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease;
  text-align: center;
  z-index: 1;
}

.gl-process__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.gl-process__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  color: #fff;
}

.gl-process__item h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.gl-process__item p {
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

.gl-process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.gl-process__item {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: all 0.25s ease;
}

.gl-process__item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.gl-process__number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  background: linear-gradient(180deg, var(--primary), var(--primary-2));
  color: #fff;
}
@media (max-width: 768px) {
  .gl-process {
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
  }

  .gl-process__item {
    text-align: left;
    padding: 20px 20px 20px 70px;
    position: relative;
  }

  /* Número à esquerda */
  .gl-process__number {
    position: absolute;
    left: 16px;
    top: 20px;
    margin: 0;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  /* Linha vertical conectando os passos */
  .gl-process::before {
    content: "";
    position: absolute;
    left: 34px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: rgba(0, 0, 0, 0.08);
  }

  .gl-process__item h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .gl-process__item p {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Priorização de conteúdo para o Googlebot (não impacta visual) */
@media print {
  .gl-topbar,
  .gl-header,
  .gl-float-cta,
  footer {
    display: none;
  }
  body {
    margin: 0;
    padding: 0;
  }
}