/* ==========================================================================
   Try Fit — Priscila Degobbi · v2
   Design system nativo — sem frameworks, sem builders.
   Hero dark editorial · tipografia display · micro-interações.
   ========================================================================== */

:root{
  /* ---- Cor: verde da marca (#14C850) + grafite profundo ---- */
  --ink:            oklch(17.8% 0.0063 156.5);
  --ink-soft:       oklch(38.1% 0.0074 170.0);
  --muted:          oklch(54.5% 0.0090 177.1);
  --muted-on-dark:  oklch(76% 0.014 165);

  --paper:          oklch(98.0% 0.0025 165.1);
  --paper-alt:      oklch(95.7% 0.0066 160.1);
  --white:          #ffffff;

  --deep:           oklch(26.8% 0.0590 152.0);
  --deep-2:         oklch(19% 0.0440 154);
  --night:          oklch(14.5% 0.0280 156);   /* hero / footer — quase-preto verde */

  --accent:         oklch(72.7% 0.2091 147.5); /* #14C850 */
  --accent-bright:  oklch(78% 0.2200 147);     /* hover sobre escuro */
  --accent-solid:   oklch(55.4% 0.1720 149.5); /* texto branco 5.46:1 */
  --accent-solid-hover: oklch(48% 0.160 150);

  --line: oklch(89% 0.008 165);
  --line-on-dark: oklch(100% 0 0 / 0.10);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 2px oklch(20% 0.02 160 / 0.06), 0 1px 1px oklch(20% 0.02 160 / 0.04);
  --shadow-md: 0 12px 32px -12px oklch(20% 0.05 155 / 0.28);
  --shadow-lg: 0 24px 60px -20px oklch(18% 0.06 155 / 0.35);
  --glow-accent: 0 0 0 1px oklch(72.7% 0.2 147 / 0.25), 0 12px 40px -8px oklch(72.7% 0.21 147 / 0.45);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);

  --container: 1240px;
  --pad-section: clamp(4.5rem, 3rem + 6vw, 8.5rem);

  --z-dropdown: 10;
  --z-sticky: 100;
  --z-overlay: 200;
  --z-modal: 300;
  --z-toast: 400;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
}

body{
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

img{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
p{ margin: 0; }

h1, h2, h3, h4{
  font-family: 'Fraunces', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}

::selection{ background: oklch(72.7% 0.2091 147.5 / 0.3); }

.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 1rem + 2vw, 3rem);
}

section{ position: relative; }
[id]{ scroll-margin-top: 5.5rem; }

/* Eyebrow headline — categoria escaneável acima do H2 */
.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-solid);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.eyebrow::before{
  content: '';
  width: 24px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.lede{
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 62ch;
  text-wrap: pretty;
}

.section-head{
  max-width: 720px;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 4rem);
}
.section-head h2{
  font-size: clamp(2.125rem, 1.7rem + 1.7vw, 3.25rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 1rem;
}
h2 em{ font-style: italic; color: var(--accent-solid); }

/* ---------------------------------------------------------------------- */
/* Skip link + focus                                                       */
/* ---------------------------------------------------------------------- */
.skip-link{
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  z-index: var(--z-toast);
  transition: top 0.2s var(--ease-out-quart);
}
.skip-link:focus{ top: 1rem; }

:focus-visible{
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------------------------------------------------------------------- */
/* Header — transparente no topo, vidro escuro ao rolar                    */
/* ---------------------------------------------------------------------- */
.site-header{
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: var(--z-sticky);
  color: var(--white);
}
.site-header::before{
  content: '';
  position: absolute;
  inset: 0;
  background: oklch(14.5% 0.028 156 / 0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line-on-dark);
  opacity: 0;
  transition: opacity 0.35s var(--ease-out-quart);
  pointer-events: none;
}
.site-header.is-scrolled::before{ opacity: 1; }

.nav-inner{
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.1rem;
}

.brand{ display: flex; align-items: center; flex-shrink: 0; }
.brand img{ height: 30px; width: auto; }

.nav-links{
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a{
  font-size: 0.9375rem;
  font-weight: 500;
  color: oklch(100% 0 0 / 0.82);
  position: relative;
  padding-block: 0.25rem;
  transition: color 0.25s var(--ease-out-quart);
}
.nav-links a:hover{ color: var(--white); }
.nav-links a::after{
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out-quart);
}
.nav-links a:hover::after,
.nav-links a:focus-visible::after{
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions{ display: flex; align-items: center; gap: 1rem; }

.nav-cta{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent);
  color: var(--night);
  font-weight: 700;
  font-size: 0.9375rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  transition: background 0.25s var(--ease-out-quart), transform 0.25s var(--ease-out-quart), box-shadow 0.25s var(--ease-out-quart);
  white-space: nowrap;
}
.nav-cta:hover{
  background: var(--accent-bright);
  transform: translateY(-1px);
  box-shadow: var(--glow-accent);
}

.menu-toggle{
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--white);
}
.menu-toggle svg{ width: 24px; height: 24px; }

/* ---------------------------------------------------------------------- */
/* Hero — dark editorial                                                   */
/* ---------------------------------------------------------------------- */
.hero{
  position: relative;
  padding-top: clamp(7rem, 5.5rem + 5vw, 10rem);
  overflow: clip;
  color: var(--white);
  background: var(--night);
}
.hero-bg{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 55% 60% at 82% 20%, oklch(72.7% 0.18 147 / 0.13), transparent 65%),
    radial-gradient(ellipse 70% 55% at 8% 95%, oklch(45% 0.12 152 / 0.20), transparent 62%),
    linear-gradient(180deg, oklch(17% 0.035 155), var(--night) 55%);
}
.hero-bg::after{
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(oklch(100% 0 0 / 0.028) 1px, transparent 1px),
    linear-gradient(90deg, oklch(100% 0 0 / 0.028) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 10%, #000 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 10%, #000 30%, transparent 75%);
}

.hero-grid{
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: clamp(2.5rem, 2rem + 2vw, 4.5rem);
  align-items: center;
  padding-bottom: clamp(3.5rem, 2.5rem + 3vw, 5.5rem);
}

.hero-copy{ max-width: 660px; }

.hero-kicker{
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: oklch(88% 0.06 150);
  background: oklch(100% 0 0 / 0.05);
  border: 1px solid oklch(72.7% 0.15 147 / 0.30);
  padding: 0.45rem 0.95rem 0.45rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
  backdrop-filter: blur(6px);
}
.hero-kicker .dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 oklch(72.7% 0.2 147 / 0.5);
  animation: pulse 2.4s var(--ease-out-quart) infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 oklch(72.7% 0.2 147 / 0.5); }
  70%{ box-shadow: 0 0 0 9px oklch(72.7% 0.2 147 / 0); }
  100%{ box-shadow: 0 0 0 0 oklch(72.7% 0.2 147 / 0); }
}

.hero-title{
  font-size: clamp(2.75rem, 1.9rem + 4.4vw, 5.25rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.75rem;
}
.hero-title em{
  font-style: italic;
  color: var(--accent);
}

/* animação de entrada palavra a palavra (spans criados via JS) */
.hero-title .w{
  display: inline-block;
  overflow: clip;
  padding-bottom: 0.14em;
  margin-bottom: -0.14em;
  vertical-align: bottom;
}
.hero-title .wi{
  display: inline-block;
  transform: translateY(110%);
  opacity: 0;
}
.js-ready .hero-title .wi{
  transition: transform 0.9s var(--ease-out-expo), opacity 0.6s var(--ease-out-quart);
  transition-delay: calc(var(--i) * 70ms + 120ms);
}
.hero-loaded .hero-title .wi{
  transform: translateY(0);
  opacity: 1;
}
@media (prefers-reduced-motion: reduce){
  .hero-title .wi{ transform: none; opacity: 1; }
}

.hero-sub{
  font-size: clamp(1.0625rem, 1rem + 0.35vw, 1.25rem);
  line-height: 1.65;
  color: var(--muted-on-dark);
  max-width: 52ch;
  margin-bottom: 2.5rem;
  text-wrap: pretty;
}

.hero-ctas{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.75rem;
}

/* ---------------------------------------------------------------------- */
/* Botões                                                                  */
/* ---------------------------------------------------------------------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1rem;
  padding: 1.05rem 1.85rem;
  border-radius: 999px;
  cursor: pointer;
  border: none;
  transition: transform 0.25s var(--ease-out-quart), box-shadow 0.25s var(--ease-out-quart), background 0.25s var(--ease-out-quart), color 0.25s var(--ease-out-quart), border-color 0.25s var(--ease-out-quart);
  white-space: nowrap;
}
.btn svg{ transition: transform 0.3s var(--ease-out-quart); }
.btn:hover svg{ transform: translateX(3px); }

.btn-primary{
  background: var(--accent);
  color: var(--night);
}
.btn-primary:hover{
  background: var(--accent-bright);
  transform: translateY(-2px);
  box-shadow: var(--glow-accent);
}

.btn-ghost{
  background: oklch(100% 0 0 / 0.04);
  color: var(--white);
  border: 1.5px solid oklch(100% 0 0 / 0.25);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover{
  border-color: oklch(100% 0 0 / 0.6);
  background: oklch(100% 0 0 / 0.08);
  transform: translateY(-2px);
}

.btn-outline{
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-outline:hover{
  border-color: var(--ink-soft);
  background: var(--white);
  transform: translateY(-2px);
}

.btn-on-green{
  background: var(--night);
  color: var(--white);
}
.btn-on-green:hover{
  background: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -14px oklch(0% 0 0 / 0.5);
}

/* ---------------------------------------------------------------------- */
/* Hero — prova + visual                                                   */
/* ---------------------------------------------------------------------- */
.hero-proof{
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.hero-proof-avatars{ display: flex; }
.proof-avatar{
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-solid);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.8rem;
  border: 2.5px solid var(--night);
  margin-left: -10px;
}
.proof-avatar:first-child{ margin-left: 0; }
.proof-avatar--2{ background: var(--deep); }
.proof-avatar--3{ background: oklch(45% 0.10 152); }
.hero-proof-text{
  font-size: 0.875rem;
  color: var(--muted-on-dark);
  line-height: 1.4;
}
.hero-proof-text strong{ color: var(--white); }

.hero-visual{
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-visual::before{
  content: '';
  position: absolute;
  inset: 6% -10% -8% 8%;
  background: radial-gradient(ellipse at 55% 45%, oklch(72.7% 0.18 147 / 0.22), transparent 68%);
  filter: blur(44px);
  pointer-events: none;
}
.hero-visual-frame{
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 869 / 1024;
  border-radius: 28px;
  overflow: clip;
  background: linear-gradient(160deg, var(--deep), var(--deep-2));
  box-shadow: 0 40px 80px -30px oklch(0% 0 0 / 0.6);
}
.hero-visual-frame img{
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero-visual-frame::after{
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px oklch(100% 0 0 / 0.14),
    inset 0 -90px 90px -60px oklch(10% 0.02 156 / 0.55);
  pointer-events: none;
}

.hero-badge{
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: oklch(18% 0.03 155 / 0.78);
  border: 1px solid oklch(100% 0 0 / 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.1rem;
  box-shadow: 0 20px 50px -20px oklch(0% 0 0 / 0.6);
  font-size: 0.8125rem;
  line-height: 1.3;
}
.hero-badge-top{ top: 1.25rem; right: -1.5rem; max-width: 225px; }
.hero-badge-bottom{ bottom: 2rem; left: -2.25rem; max-width: 215px; }
.hero-badge-icon{
  flex-shrink: 0;
  width: 38px; height: 38px;
  border-radius: 10px;
  background: oklch(72.7% 0.15 147 / 0.16);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.hero-badge-icon svg{ width: 20px; height: 20px; }
.hero-badge strong{ display: block; color: var(--white); font-weight: 700; font-size: 0.9375rem; }
.hero-badge span{ color: var(--muted-on-dark); }

/* ---------------------------------------------------------------------- */
/* Marquee de credenciais                                                  */
/* ---------------------------------------------------------------------- */
.hero-marquee{
  position: relative;
  border-top: 1px solid var(--line-on-dark);
  padding-block: 1.4rem;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track{
  display: flex;
  align-items: center;
  gap: 3.25rem;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.hero-marquee:hover .marquee-track{ animation-play-state: paused; }
@keyframes marquee{
  to{ transform: translateX(-50%); }
}
.marquee-item{
  font-family: 'Fraunces', serif;
  font-size: 1.0625rem;
  font-weight: 500;
  color: oklch(100% 0 0 / 0.6);
  white-space: nowrap;
}
.marquee-item small{
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  color: oklch(100% 0 0 / 0.35);
  margin-left: 0.4rem;
}
.marquee-sep{
  width: 5px; height: 5px;
  border-radius: 50%;
  background: oklch(72.7% 0.2 147 / 0.5);
  flex-shrink: 0;
}
@media (prefers-reduced-motion: reduce){
  .marquee-track{ animation: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee-item[aria-hidden="true"], .marquee-item[aria-hidden="true"] + .marquee-sep{ display: none; }
}

/* ---------------------------------------------------------------------- */
/* Routing / perfil cards                                                  */
/* ---------------------------------------------------------------------- */
.routing{
  padding-block: var(--pad-section);
  background: var(--paper);
}

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

.route-card{
  position: relative;
  display: flex;
  flex-direction: column;
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.35rem);
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--line);
  overflow: clip;
  transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart), border-color 0.4s var(--ease-out-quart);
}
.route-card::before{
  content: '';
  position: absolute;
  inset-inline: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-solid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.45s var(--ease-out-quart);
}
.route-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.route-card:hover::before{ transform: scaleX(1); }

.route-card--featured{
  background: linear-gradient(165deg, var(--deep) 0%, var(--deep-2) 100%);
  border-color: transparent;
  color: var(--white);
}
.route-card--featured h3{ color: var(--white); }

.route-tag{
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-solid);
  margin-bottom: 1.1rem;
}
.route-card--featured .route-tag{ color: var(--accent); }

.route-card h3{
  font-size: 1.375rem;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.route-card p{
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 1.75rem;
  flex-grow: 1;
}
.route-card--featured p{ color: var(--muted-on-dark); }

.route-link{
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--ink);
  margin-top: auto;
  transition: color 0.3s var(--ease-out-quart);
}
.route-link svg{ width: 17px; height: 17px; transition: transform 0.3s var(--ease-out-quart); }
.route-card:hover .route-link{ color: var(--accent-solid); }
.route-card--featured:hover .route-link{ color: var(--accent); }
.route-card:hover .route-link svg{ transform: translateX(4px); }
.route-card--featured .route-link{ color: var(--white); }

.route-number{
  position: absolute;
  top: 0.75rem;
  right: 1.25rem;
  font-family: 'Fraunces', serif;
  font-size: 4.5rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  color: oklch(94% 0.01 160);
  pointer-events: none;
  transition: color 0.4s var(--ease-out-quart);
}
.route-card:hover .route-number{ color: oklch(72.7% 0.15 147 / 0.22); }
.route-card--featured .route-number{ color: oklch(100% 0 0 / 0.08); }
.route-card--featured:hover .route-number{ color: oklch(72.7% 0.2 147 / 0.25); }

/* ---------------------------------------------------------------------- */
/* Método / pilares                                                        */
/* ---------------------------------------------------------------------- */
.method{
  padding-block: var(--pad-section);
  background: var(--paper-alt);
}
.method-inner{
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2.5rem, 2rem + 2vw, 5rem);
  align-items: start;
}
.method-intro{ position: sticky; top: 6.5rem; }
.method-intro h2{
  font-size: clamp(2.125rem, 1.7rem + 1.7vw, 3.25rem);
  letter-spacing: -0.025em;
  line-height: 1.08;
  margin-bottom: 1.25rem;
}
.method-intro p{
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 46ch;
}

.pillars{
  display: flex;
  flex-direction: column;
}
.pillar{
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem 1.5rem;
  margin-inline: -1.5rem;
  border-top: 1px solid var(--line);
  border-radius: var(--radius-md);
  transition: background 0.35s var(--ease-out-quart);
}
.pillar:hover{ background: oklch(100% 0 0 / 0.6); }
.pillar:first-child{ border-top: none; padding-top: 1.5rem; }

.pillar-icon{
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
  transition: transform 0.35s var(--ease-out-quart), box-shadow 0.35s var(--ease-out-quart);
}
.pillar:hover .pillar-icon{
  transform: translateY(-3px) scale(1.05);
  box-shadow: var(--shadow-md);
}
.pillar-icon img{ width: 26px; height: 26px; object-fit: contain; }

.pillar h3{
  font-size: 1.3125rem;
  margin-bottom: 0.5rem;
}
.pillar h3 .pillar-index{
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 0.8125rem;
  color: var(--accent-solid);
  margin-right: 0.6rem;
  vertical-align: middle;
  letter-spacing: 0.05em;
}
.pillar p{
  font-size: 0.9688rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 56ch;
}

/* ---------------------------------------------------------------------- */
/* Prova social                                                            */
/* ---------------------------------------------------------------------- */
.social-proof{
  padding-block: var(--pad-section);
  background:
    radial-gradient(ellipse 60% 50% at 90% 0%, oklch(72.7% 0.15 147 / 0.08), transparent 60%),
    linear-gradient(180deg, var(--deep), var(--deep-2));
  color: var(--white);
  overflow: clip;
}
.social-proof .section-head h2{ color: var(--white); }
.social-proof .section-head h2 em{ color: var(--accent); }
.social-proof .section-head p{ color: var(--muted-on-dark); }
.social-proof .eyebrow{ color: var(--accent); }

.testimonials-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: clamp(2.5rem, 2rem + 2vw, 3.5rem);
}

.testimonial{
  position: relative;
  background: oklch(100% 0 0 / 0.045);
  border: 1px solid oklch(100% 0 0 / 0.1);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 1.5rem + 1vw, 2.25rem);
  margin: 0;
  display: flex;
  flex-direction: column;
  transition: background 0.3s var(--ease-out-quart), transform 0.3s var(--ease-out-quart), border-color 0.3s var(--ease-out-quart);
}
.testimonial:hover{
  background: oklch(100% 0 0 / 0.075);
  border-color: oklch(72.7% 0.2 147 / 0.3);
  transform: translateY(-4px);
}
.testimonial::before{
  content: '“';
  font-family: 'Fraunces', serif;
  font-size: 3.5rem;
  line-height: 0.6;
  color: var(--accent);
  opacity: 0.65;
  display: block;
  margin-bottom: 1rem;
}
.testimonial-quote{
  font-family: 'Fraunces', serif;
  font-size: 1.0625rem;
  line-height: 1.5;
  font-weight: 400;
  font-style: italic;
  color: oklch(97% 0.01 160);
  margin-bottom: 1.75rem;
  flex-grow: 1;
}
.testimonial-author{
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.testimonial-avatar{
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent-solid);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-weight: 600;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.testimonial-author-name{
  display: block;
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--white);
}
.testimonial-author-role{
  font-size: 0.8125rem;
  color: var(--muted-on-dark);
}

.stats-band{
  display: flex;
  justify-content: space-between;
  gap: clamp(2rem, 1.5rem + 2vw, 4rem);
  flex-wrap: wrap;
  padding-top: clamp(2rem, 1.5rem + 1.5vw, 3rem);
  border-top: 1px solid oklch(100% 0 0 / 0.12);
}
.stat{
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-width: 260px;
}
.stat-value{
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 2rem + 1.6vw, 3.75rem);
  font-weight: 600;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat-label{
  font-size: 0.875rem;
  color: var(--muted-on-dark);
  line-height: 1.45;
}

/* ---------------------------------------------------------------------- */
/* CTA final                                                               */
/* ---------------------------------------------------------------------- */
.cta-band{
  padding-block: clamp(5rem, 4rem + 4vw, 8rem);
  background:
    radial-gradient(ellipse 70% 90% at 50% -20%, oklch(80% 0.2 147 / 0.35), transparent 60%),
    linear-gradient(160deg, var(--accent-solid), oklch(40% 0.13 151));
  color: var(--white);
  overflow: clip;
}
.cta-band-inner{
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.cta-band h2{
  font-size: clamp(2.25rem, 1.8rem + 2.2vw, 3.75rem);
  letter-spacing: -0.025em;
  line-height: 1.06;
  color: var(--white);
  max-width: 20ch;
}
.cta-band h2 em{ font-style: italic; color: oklch(93% 0.1 148); }
.cta-band p{
  font-size: clamp(1.0625rem, 1rem + 0.3vw, 1.1875rem);
  color: oklch(96% 0.02 150);
  max-width: 50ch;
  line-height: 1.6;
}
.cta-band .btn{ margin-top: 0.75rem; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer{
  background: var(--night);
  color: var(--muted-on-dark);
  padding-top: clamp(3.5rem, 3rem + 2vw, 5rem);
}
.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: clamp(2rem, 1.5rem + 2vw, 4rem);
  padding-bottom: 3rem;
}
.footer-brand img{ height: 30px; width: auto; margin-bottom: 1.25rem; }
.footer-brand p{
  font-size: 0.9375rem;
  line-height: 1.6;
  max-width: 32ch;
}
.footer-head{
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(100% 0 0 / 0.45);
  margin-bottom: 1.1rem;
}
.footer-nav, .footer-contact{
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  align-items: flex-start;
}
.footer-nav a, .footer-contact a{
  font-size: 0.9375rem;
  padding-block: 0.35rem;
  color: var(--muted-on-dark);
  transition: color 0.25s var(--ease-out-quart);
}
.footer-nav a:hover, .footer-contact a:hover{ color: var(--accent); }

.footer-legal{
  border-top: 1px solid var(--line-on-dark);
  padding-block: 1.5rem;
  font-size: 0.8125rem;
  color: oklch(100% 0 0 / 0.4);
}
.footer-legal strong{ color: var(--white); }

/* ---------------------------------------------------------------------- */
/* Reveal on scroll                                                        */
/* ---------------------------------------------------------------------- */
[data-reveal]{
  opacity: 0;
  transform: translateY(22px);
  transition-delay: calc(var(--stagger, 0) * 70ms);
}
.js-ready [data-reveal]{
  transition: opacity 0.7s var(--ease-out-quart), transform 0.7s var(--ease-out-quart);
  transition-delay: calc(var(--stagger, 0) * 70ms);
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce){
  [data-reveal]{ opacity: 1; transform: none; }
}

/* ---------------------------------------------------------------------- */
/* Responsive                                                              */
/* ---------------------------------------------------------------------- */
@media (max-width: 1080px){
  .method-inner{ grid-template-columns: 1fr; }
  .method-intro{ position: static; }
}

@media (max-width: 900px){
  .nav-links{ display: none; }
  .menu-toggle{ display: inline-flex; }
  .nav-cta{ display: none; }

  /* Hero mobile: kicker → headline → imagem → sub → CTAs → prova social */
  .hero-grid{ display: flex; flex-direction: column; align-items: stretch; }
  .hero-copy{ display: contents; }
  .hero-kicker{ order: 1; align-self: flex-start; margin-bottom: 1.5rem; }
  .hero-title{ order: 2; margin-bottom: 1.75rem; }
  .hero-visual{ order: 3; margin-bottom: 2rem; }
  .hero-sub{ order: 4; margin-bottom: 2rem; }
  .hero-ctas{ order: 5; margin-bottom: 2.25rem; }
  .hero-proof{ order: 6; }
  .hero-visual-frame{ width: min(80vw, 360px); }

  .routing-grid{ grid-template-columns: 1fr; }
  .testimonials-grid{ grid-template-columns: 1fr; }
  .stats-band{ flex-direction: column; gap: 1.75rem; }
  .stat{ max-width: none; }

  .footer-grid{ grid-template-columns: 1fr; gap: 2.25rem; }
}

@media (max-width: 640px){
  .hero-badge{ display: none; }
  .hero-ctas .btn{ width: 100%; }
  .pillar{ grid-template-columns: 1fr; }
  .pillar-icon{ margin-bottom: 0.25rem; }
}

/* ---------------------------------------------------------------------- */
/* Mobile menu drawer — dark                                               */
/* ---------------------------------------------------------------------- */
.mobile-menu{
  position: fixed;
  inset: 0;
  background: var(--night);
  color: var(--white);
  z-index: var(--z-modal);
  display: flex;
  flex-direction: column;
  padding: 1.5rem clamp(1.25rem, 1rem + 2vw, 3rem);
  transform: translateX(100%);
  transition: transform 0.4s var(--ease-out-expo);
}
.mobile-menu.is-open{ transform: translateX(0); }
.mobile-menu-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}
.mobile-menu-head img{ height: 28px; width: auto; }
.mobile-menu-close{
  background: none; border: none; cursor: pointer; color: var(--white); padding: 0.5rem;
}
.mobile-menu-close svg{ width: 26px; height: 26px; }
.mobile-menu-links{
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 0.25rem;
}
.mobile-menu-links a{
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid var(--line-on-dark);
  color: var(--white);
}
.mobile-menu-cta{ margin-top: 2.25rem; }
