/* ============================================================
   SHARED UTILITIES
   ============================================================ */

/* Scroll-reveal base (replaces sp-animate, cm-animate, sv-animate) */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.23, 1, 0.32, 1),
              transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.reveal.is-visible { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: 0.15s; }
.reveal-d2 { transition-delay: 0.3s; }
.reveal-d3 { transition-delay: 0.45s; }
.reveal-d4 { transition-delay: 0.35s; }

/* ============================================================
   PROVA SOCIAL — Social Proof
============================================================ */

.social-proof {
  background: #fff;
  padding: 8rem 1.5rem;
  overflow: hidden;
  position: relative;
}

.social-proof::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,232,124,0.04) 0%, transparent 50%),
    radial-gradient(circle at 85% 80%, rgba(10,22,40,0.03) 0%, transparent 50%);
  pointer-events: none;
}

.sp-header {
  text-align: center;
  margin-bottom: 4.5rem;
  position: relative;
  z-index: 1;
}

.sp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-primary);
  background: rgba(0,232,124,0.1);
  border: 1px solid rgba(0,232,124,0.35);
  border-radius: 9999px;
}

.sp-eyebrow-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: sp-pulse 2s ease-in-out infinite;
}

@keyframes sp-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.sp-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.85rem, 3.8vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--color-primary);
  max-width: 700px;
  margin: 0 auto 1.25rem;
}

.sp-title-accent { color: var(--color-accent-ink); }

.sp-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Stats strip */
.sp-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  max-width: 800px;
  margin: 0 auto 5.5rem;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.sp-stat {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 2rem 2.25rem;
  position: relative;
}

.sp-stat + .sp-stat::before {
  content: '';
  position: absolute;
  left: 0; top: 22%; bottom: 22%;
  width: 1px;
  background: linear-gradient(180deg, transparent, #D8DEE8, transparent);
}

.sp-stat-number {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 1;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.sp-stat-number em {
  color: var(--color-accent-ink);
  font-style: normal;
}

.sp-stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  max-width: 150px;
}

/* Testimonials grid */
.sp-testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sp-t-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem 2.25rem;
  box-shadow:
    0 4px 24px rgba(10,22,40,0.08),
    0 0 0 1px rgba(10,22,40,0.04);
  display: flex;
  flex-direction: column;
}

.sp-t-quote {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  line-height: 0.55;
  font-weight: 800;
  color: var(--color-accent-ink);
  display: block;
  margin-bottom: 1rem;
}

.sp-t-text {
  font-size: 0.975rem;
  font-weight: 500;
  line-height: 1.72;
  color: var(--color-text-heading);
  margin-bottom: 1.75rem;
  flex: 1;
}

.sp-t-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid rgba(10,22,40,0.07);
  padding-top: 1.25rem;
  margin-top: auto;
}

.sp-t-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.sp-t-name { font-weight: 700; font-size: 0.92rem; line-height: 1.2; color: var(--color-text-heading); }
.sp-t-role { font-size: 0.78rem; color: var(--color-text-muted); margin-top: 3px; }

/* Decorative floating elements */
.sp-deco {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.sp-deco--1 {
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(0,232,124,0.06) 0%, transparent 70%);
  top: -80px; right: -100px;
  animation: sp-float 8s ease-in-out infinite;
}

.sp-deco--2 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(10,22,40,0.04) 0%, transparent 70%);
  bottom: -40px; left: -60px;
  animation: sp-float 10s ease-in-out infinite reverse;
}

@keyframes sp-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

/* Responsive */
@media (max-width: 900px) {
  .sp-testimonials { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .social-proof { padding: 5rem 1.25rem; }

  .sp-stats { gap: 0; flex-direction: column; }
  .sp-stat + .sp-stat::before {
    top: 0; left: 15%; right: 15%; bottom: auto;
    width: auto; height: 1px;
  }

  .sp-testimonials { grid-template-columns: 1fr; }
  .sp-deco { display: none; }
}

/* ============================================================
   AZO VS. ALTERNATIVAS — Comparison
============================================================ */

.comparison {
  background: var(--color-primary);
  padding: 7rem 1.5rem;
  overflow: hidden;
}

.cm-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.cm-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 1rem;
}

.cm-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  color: #fff;
  max-width: 700px;
  margin-bottom: 3.5rem;
}

.cm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.cm-card {
  border-radius: 16px;
  padding: 2rem 2.25rem;
  background: #111D35;
}

.cm-card--bad  { border: 1px solid rgba(255,255,255,0.08); }
.cm-card--good {
  border: 2px solid var(--color-accent);
  box-shadow: 0 0 0 1px rgba(0,232,124,0.2),
              0 8px 32px rgba(0,232,124,0.15);
}

.cm-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.cm-card-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cm-card--bad  .cm-card-icon { background: rgba(239,68,68,0.15); }
.cm-card--good .cm-card-icon { background: rgba(0,232,124,0.15); }

.cm-card-label {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
}

.cm-card--bad  .cm-card-label { color: rgba(255,255,255,0.55); }
.cm-card--good .cm-card-label { color: var(--color-accent); }

.cm-list { list-style: none; margin: 0; padding: 0; }

.cm-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 0.92rem;
  line-height: 1.5;
}

.cm-item:last-child { border-bottom: none; }

.cm-card--bad  .cm-item { color: rgba(255,255,255,0.65); font-weight: 400; }
.cm-card--good .cm-item { color: #fff; font-weight: 500; }

.cm-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

.cm-callout {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  background: rgba(0,232,124,0.07);
  border: 1px solid rgba(0,232,124,0.2);
  border-radius: 12px;
  padding: 1.5rem 2rem;
}

.cm-callout-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.875rem;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 9999px;
  white-space: nowrap;
  flex-shrink: 0;
}

.cm-callout-text {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
  flex: 1;
}

@media (max-width: 760px) {
  .comparison { padding: 5rem 1.25rem; }
  .cm-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   SERVICOS E VALOR
============================================================ */

.services {
  background: var(--color-primary);
  padding: 6rem 1.5rem 7rem;
  overflow: hidden;
}

.sv-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.sv-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.sv-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.825rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-accent);
  white-space: nowrap;
}

.sv-eyebrow-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--color-accent);
}

.sv-logo-strip {
  display: flex;
  align-items: center;
  gap: 2rem;
  opacity: 0.45;
  filter: grayscale(1);
  flex-wrap: wrap;
}

.sv-logo-img {
  height: 32px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.sv-logo-complex {
  filter: grayscale(1) brightness(1.6) contrast(1.2);
  height: 48px;
}

.sv-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4rem;
}

.sv-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}

.sv-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

.sv-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.65;
  margin: 0;
}

.sv-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 9999px;
  transition: background 250ms ease, transform 150ms ease, box-shadow 250ms ease;
}

.sv-cta:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,232,124,0.35);
}

/* Cards grid */
.sv-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}

.sv-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  transition: transform 350ms ease,
              box-shadow 350ms ease,
              background 350ms ease,
              border-color 350ms ease;
  cursor: default;
}

/* Dark cards */
.sv-card--dark {
  background: #111D35;
  border: 1px solid rgba(255,255,255,0.07);
  color: #fff;
}

.sv-card--dark:hover,
.sv-card--dark.is-active {
  background: #fff;
  border-color: transparent;
  transform: rotate(-4deg) translateY(-5px);
  box-shadow: 0 20px 60px rgba(10,22,40,0.4), 0 4px 12px rgba(10,22,40,0.2);
}

/* Featured card */
.sv-card--featured {
  background: #111D35;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 20px;
  position: relative;
  z-index: 2;
  transition: transform 350ms ease,
              box-shadow 350ms ease,
              background 350ms ease,
              border-color 350ms ease;
}

.sv-card--featured:hover,
.sv-card--featured.is-active {
  background: #fff;
  border-color: transparent;
  transform: rotate(-4deg) translateY(-5px);
  box-shadow: 0 20px 60px rgba(10,22,40,0.4), 0 4px 12px rgba(10,22,40,0.2);
}

/* Card icon box */
.sv-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-shrink: 0;
}

.sv-card--dark .sv-card-icon,
.sv-card--featured .sv-card-icon {
  background: rgba(0,232,124,0.10);
  transition: background 350ms ease;
}

.sv-card--dark:hover .sv-card-icon,
.sv-card--dark.is-active .sv-card-icon,
.sv-card--featured:hover .sv-card-icon,
.sv-card--featured.is-active .sv-card-icon {
  background: rgba(10,22,40,0.06);
}

.sv-card--dark:hover .sv-card-icon svg,
.sv-card--dark.is-active .sv-card-icon svg,
.sv-card--featured:hover .sv-card-icon svg,
.sv-card--featured.is-active .sv-card-icon svg {
  filter: brightness(0) opacity(0.75);
}

/* Card title */
.sv-card-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: auto;
  padding-bottom: 1.5rem;
}

.sv-card--dark .sv-card-title,
.sv-card--featured .sv-card-title { color: #fff; transition: color 350ms ease; }

.sv-card--dark:hover .sv-card-title,
.sv-card--dark.is-active .sv-card-title,
.sv-card--featured:hover .sv-card-title,
.sv-card--featured.is-active .sv-card-title { color: var(--color-primary); }

/* Card description */
.sv-card-desc {
  font-size: 0.875rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.sv-card--dark .sv-card-desc,
.sv-card--featured .sv-card-desc { color: rgba(255,255,255,0.74); font-style: normal; transition: color 350ms ease; }

.sv-card--dark:hover .sv-card-desc,
.sv-card--dark.is-active .sv-card-desc,
.sv-card--featured:hover .sv-card-desc,
.sv-card--featured.is-active .sv-card-desc { color: rgba(10,22,40,0.6); font-style: italic; }

/* Benefit tag */
.sv-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(0,232,124,0.12);
  color: var(--color-accent);
  border: 1px solid rgba(0,232,124,0.25);
  white-space: nowrap;
  align-self: flex-start;
  margin-top: auto;
}

.sv-card--featured:hover .sv-tag,
.sv-card--featured.is-active .sv-tag,
.sv-card--dark:hover .sv-tag,
.sv-card--dark.is-active .sv-tag {
  background: rgba(10,22,40,0.07);
  color: var(--color-primary);
  border-color: rgba(10,22,40,0.15);
}

/* Scroll animation — cards enter flat, hover/is-active adds rotation */
.sv-card--featured.reveal,
.sv-card--dark.reveal              { opacity: 0; transform: translateY(36px); }
.sv-card--featured.reveal.is-visible,
.sv-card--dark.reveal.is-visible   { opacity: 1; transform: none; }
.sv-card--featured.reveal.is-visible:hover,
.sv-card--featured.reveal.is-visible.is-active,
.sv-card--dark.reveal.is-visible:hover,
.sv-card--dark.reveal.is-visible.is-active { transform: rotate(-4deg) translateY(-5px); }

/* Responsive */
@media (max-width: 960px) {
  .sv-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .services { padding: 5rem 1.25rem 6rem; }
  .sv-header { grid-template-columns: 1fr; gap: 1.5rem; }
  .sv-grid { grid-template-columns: 1fr; }
  .sv-card--featured:hover,
  .sv-card--featured.is-active,
  .sv-card--featured.reveal.is-visible:hover,
  .sv-card--featured.reveal.is-visible.is-active,
  .sv-card--dark:hover,
  .sv-card--dark.is-active,
  .sv-card--dark.reveal.is-visible:hover,
  .sv-card--dark.reveal.is-visible.is-active { transform: none; }
}

/* ============================================================
   COMO FUNCIONA — Process Steps
============================================================ */

.process {
  background-color: #F2F2F2;
  padding: 6rem 1.5rem;
  overflow: hidden;
}

.process__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process__eyebrow {
  display: inline-block;
  background: rgba(0, 232, 124, 0.12);
  color: var(--color-primary);
  border: 1px solid rgba(0, 232, 124, 0.32);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 9999px;
  padding: 0.4rem 1rem;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
}

.process__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: #0A1628;
  text-align: center;
  line-height: 1.15;
  margin: 0 0 4rem;
}

.process__steps {
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  gap: 0;
  width: 100%;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 22px;
  left: calc(16.66% + 22px);
  right: calc(16.66% + 22px);
  height: 0;
  border-top: 2px dashed rgba(0, 232, 124, 0.5);
  z-index: 0;
}

.process__step {
  flex: 1;
  display: flex;
  justify-content: center;
  opacity: 0;
  transform: scale(0.92) translateY(20px);
  transition:
    opacity 0.55s ease var(--delay, 0ms),
    transform 0.55s ease var(--delay, 0ms);
}

.process__step.is-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.process__circle {
  position: relative;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  border: 1.5px solid rgba(10, 22, 40, 0.1);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0 -18px;
}

.process__badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #00E87C;
  color: #0A1628;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  box-shadow: 0 0 0 5px #F2F2F2;
}

.process__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3.5rem 2rem 2rem;
  max-width: 240px;
}

.process__step-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: #0A1628;
  margin: 0 0 0.75rem;
  line-height: 1.25;
}

.process__step-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 768px) {
  .process { padding: 4rem 1.25rem; }
  .process__title { margin-bottom: 2.5rem; }

  /* Rail lateral: padding-left abre espaço para badge + linha */
  .process__steps {
    display: grid;
    gap: 1rem;
  }

  /* Linha vertical contínua — cobre toda a altura dos steps */
  .process__steps::before {
    display: none;
    top: 0;
    left: 22px;      /* centro do badge (44px ÷ 2) */
    bottom: 0;
    right: auto;
    width: 0;
    height: auto;
    border-top: none;
    border-left: 2px dashed rgba(0, 232, 124, 0.45);
    transform: none;
  }

  .process__step {
    position: relative;
    justify-content: stretch;
    padding-bottom: 0;
  }

  /* Card: só conteúdo textual, sem badge interno */
  .process__circle {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid rgba(10, 22, 40, 0.08);
    background: #fff;
    box-shadow: 0 10px 30px rgba(10, 22, 40, 0.08);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0;
    padding: 1.4rem 1.25rem 1.3rem;
    gap: 0;
  }

  /* Badge sai do card e flutua na rail lateral */
  .process__badge {
    position: relative;
    left: -56px;          /* recua para a área do padding-left */
    top: auto;
    transform: none;
    box-shadow: 0 0 0 5px #F2F2F2; /* cobre a linha atrás */
    z-index: 2;
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    box-shadow: none;
  }

  .process__content {
    padding: 0;
    max-width: none;
    text-align: left;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .process__step-title {
    font-size: 1.05rem;
    margin-bottom: 0;
  }

  .process__step-desc  {
    font-size: 0.92rem;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .process { padding-inline: 1rem; }

  .process__circle {
    padding: 1.25rem 1rem 1.15rem;
    border-radius: 18px;
  }
}

@media (max-width: 768px) {
  .process__container {
    align-items: stretch;
  }

  .process__steps {
    grid-template-columns: 1fr;
    gap: 1.15rem;
    max-width: 34rem;
    margin: 0 auto;
  }

  .process__steps::before {
    content: none;
  }

  .process__step {
    width: 100%;
    justify-content: stretch;
  }

  .process__circle {
    width: 100%;
    max-width: none;
    min-height: 0;
    height: auto;
    margin: 0;
    padding: 1.4rem 1.25rem 1.3rem;
    border-radius: 24px;
    border: 1px solid rgba(10, 22, 40, 0.08);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(246, 250, 248, 1) 100%);
    box-shadow:
      0 14px 36px rgba(10, 22, 40, 0.08),
      0 1px 0 rgba(255, 255, 255, 0.8) inset;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }

  .process__badge {
    position: static;
    transform: none;
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
    box-shadow: 0 10px 24px rgba(0, 232, 124, 0.22);
  }

  .process__content {
    width: 100%;
    max-width: none;
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }

  .process__step-title {
    font-size: 1.08rem;
    margin-bottom: 0.55rem;
  }

  .process__step-desc {
    font-size: 0.92rem;
    line-height: 1.65;
  }
}

@media (max-width: 480px) {
  .process__circle {
    padding: 1.25rem 1rem 1.15rem;
    border-radius: 18px;
  }
}

/* ============================================================
   PARA QUEM E
============================================================ */

.for-whom {
  background-color: #F2F2F2;
  padding: 7rem 0;
  font-family: var(--font-body);
}

.for-whom__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.for-whom__header {
  text-align: center;
  margin-bottom: 4rem;
}

.for-whom__eyebrow {
  display: inline-block;
  background-color: rgba(0, 232, 124, 0.12);
  color: var(--color-accent-ink);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.4rem 1.1rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.for-whom__title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #0A1628;
  font-size: clamp(1.75rem, 6vw, 2.4rem);
  line-height: 1.15;
  max-width: 620px;
  margin: 0 auto 1rem;
}

.for-whom__subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

.for-whom__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.for-whom__card {
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(10, 22, 40, 0.06);
  box-shadow: 0 2px 12px rgba(10, 22, 40, 0.06);
  display: flex;
  flex-direction: column;

  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease, box-shadow 250ms ease;
}

.for-whom__card:nth-child(1) { transition-delay: 0ms, 0ms, 0ms; }
.for-whom__card:nth-child(2) { transition-delay: 120ms, 120ms, 0ms; }
.for-whom__card:nth-child(3) { transition-delay: 240ms, 240ms, 0ms; }

.for-whom__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.for-whom__card.is-visible:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(10, 22, 40, 0.12);
  transition-delay: 0ms !important;
}

.for-whom__corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  border-radius: 0 20px 0 80px;
  background-color: rgba(0, 232, 124, 0.07);
}

.for-whom__icon-container {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: rgba(0, 232, 124, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.for-whom__icon-container svg {
  width: 26px;
  height: 26px;
  stroke: #00E87C;
  stroke-width: 2px;
}

.for-whom__label {
  display: inline-block;
  background-color: #0A1628;
  color: #00E87C;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  border-radius: 9999px;
  margin-bottom: 1rem;
  align-self: flex-start;
}

.for-whom__card-title {
  font-family: var(--font-heading);
  font-weight: 700;
  color: #0A1628;
  font-size: 1.05rem;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.for-whom__card-desc {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.for-whom__proof-strip {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  border-top: 1px solid rgba(10, 22, 40, 0.06);
  padding-top: 1rem;
  margin-top: auto;
}

.for-whom__proof-strip svg {
  width: 16px;
  height: 16px;
  stroke: #00E87C;
  stroke-width: 2px;
  flex-shrink: 0;
}

.for-whom__proof-text {
  font-family: var(--font-body);
  font-weight: 600;
  color: #0A1628;
  font-size: 0.82rem;
}

@media (max-width: 768px) {
  .for-whom__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .for-whom { padding: 4rem 1rem; }
  .for-whom__grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA FINAL
============================================================ */

.cta-final {
  padding: 6rem 2rem;
  background: var(--color-background);
}

.cta-banner {
  position: relative;
  margin: 0 auto;
  max-width: 1100px;
  border-radius: 24px;
  background: var(--color-primary);
  overflow: hidden;
  display: flex;
  flex-direction: row;
  background-image: repeating-linear-gradient(
    0deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px
  ),
  repeating-linear-gradient(
    90deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 1px, transparent 1px, transparent 40px
  );
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(0,232,124,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.cta-visual {
  position: relative;
  width: 38%;
  background: linear-gradient(135deg, rgba(0,232,124,0.08) 0%, transparent 80%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-visual-svg {
  position: absolute;
  width: 100%;
  height: 100%;
}

.cta-content {
  position: relative;
  width: 62%;
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}

.cta-doodle {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
}

.cta-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: #FFFFFF;
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.cta-subtitle {
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 440px;
  margin-bottom: 1.75rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--color-accent);
  color: var(--color-primary);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  align-self: flex-start;
  transition: all var(--transition-base);
}

.cta-button:hover {
  background: var(--color-accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 232, 124, 0.35);
}

.cta-note {
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  margin-top: 0.75rem;
}

/* ============================================================
   FOOTER
============================================================ */

.site-footer {
  background: var(--color-primary);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 4rem 1.5rem 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 30% 70%;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
}

.footer-tagline {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  max-width: 260px;
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.78);
  transition: all 200ms ease;
}

.footer-social-btn:hover {
  background: rgba(0,232,124,0.15);
  border-color: rgba(0,232,124,0.3);
  color: var(--color-accent);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
}

.footer-col-title {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 1rem;
}

.footer-link {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.74);
  display: block;
  padding: 0.3rem 0;
  overflow-wrap: anywhere;
  transition: color 200ms ease;
}

.footer-link:hover { color: var(--color-accent); }

.footer-link--accent { color: var(--color-accent); font-weight: 500; }
.footer-link--accent:hover { color: var(--color-accent-dark); }

.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.62);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.62);
  transition: color 200ms ease;
}

.footer-legal a:hover { color: rgba(255,255,255,0.84); }

/* Responsive: CTA + Footer */
@media (max-width: 768px) {
  .cta-final {
    padding: 3.5rem 1rem 1.5rem;
    background: linear-gradient(180deg,
      var(--color-background) 0%,
      var(--color-background) 72%,
      var(--color-primary) 72%,
      var(--color-primary) 100%);
  }
  .cta-banner {
    flex-direction: column;
    border-radius: 18px;
    margin: 0;
  }
  .cta-visual { display: none; }
  .cta-content {
    width: 100%;
    padding: 2.25rem 1.25rem 2rem;
    align-items: stretch;
  }
  .cta-doodle { display: none; }
  .cta-title { font-size: clamp(1.55rem, 7vw, 1.9rem); }
  .cta-subtitle {
    max-width: none;
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
  }
  .cta-button {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 0.95rem 1.1rem;
    text-align: center;
    white-space: normal;
    line-height: 1.4;
  }
  .cta-note {
    margin-top: 1rem;
    text-align: center;
  }

  .site-footer { padding: 2.75rem 1rem 0; }
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }
  .footer-tagline { max-width: none; }
  .footer-columns { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.5rem 1rem; }
  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
    padding: 1.25rem 0 1.5rem;
  }
  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem 1rem;
  }
}

@media (max-width: 560px) {
  .footer-columns { grid-template-columns: 1fr; gap: 1.5rem; }
}

/* ============================================================
   FAQ
============================================================ */

.faq {
  background: #FFFFFF;
  padding: 6rem 0;
}

.faq-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq-eyebrow {
  display: inline-block;
  background: rgba(0, 232, 124, 0.12);
  color: var(--color-accent-ink);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

.faq-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--color-primary);
  font-size: 2rem;
}

.faq-list {
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-bottom: 1px solid rgba(10, 22, 40, 0.08);
  padding: 1.25rem 0;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  width: 100%;
  background: none;
  border: none;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
}

.faq-question-text {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--color-primary);
  font-size: 1rem;
}

.faq-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(10, 22, 40, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-base);
  color: var(--color-primary);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform var(--transition-base);
}

.faq-item.is-open .faq-toggle {
  background: rgba(0, 232, 124, 0.15);
  color: var(--color-accent-ink);
}

.faq-item.is-open .faq-toggle svg {
  transform: rotate(45deg);
}

.faq-answer {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
  padding-top: 0;
  padding-right: 2rem;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 400ms ease, opacity 400ms ease, padding-top 400ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding-top: 0.75rem;
  opacity: 1;
}

.faq-item.is-animated {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.faq-item.is-animated.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  .faq { padding: 3rem 0; }
  .faq-container { padding: 0 1.5rem; }
  .faq-title { font-size: 1.75rem; }
}
