/* ==========================================================
   HYPEA LP — Design Tokens & Reset
   ========================================================== */
:root {
  --color-bg: #ffffff;
  --color-dark: #000000;
  --color-pink: #eb2968;
  --color-pink-glow: rgba(235, 41, 104, 0.55);
  --color-text: #0a0a0a;
  --color-text-soft: #2a2a2a;
  --color-muted: #6b6b6b;
  --color-line: #e6e6e6;

  --font-display: "Inter", "Neue Haas Grotesk Display Pro", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-body: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-card: "DM Sans", "Inter", sans-serif;

  --radius-pill: 999px;
  --radius-card: 14px;
  --radius-input: 8px;

  --container: 1528px;
  --section-py: clamp(80px, 11vh, 140px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* ==========================================================
   Motion primitives — Premium cinematic reveals
   ========================================================== */
:root {
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);          /* expo-out, more dramatic */
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);   /* slight overshoot */
  --reveal-duration: 1.1s;
  --reveal-distance: 28px;
  --stagger-step: 0.1s;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0);
  filter: blur(6px);
  transition:
    opacity var(--reveal-duration) var(--ease-out),
    transform var(--reveal-duration) var(--ease-out),
    filter calc(var(--reveal-duration) * 0.8) var(--ease-out);
  transition-delay: calc(var(--i, 0) * var(--stagger-step));
  will-change: opacity, transform, filter;
}
.reveal--left { transform: translate3d(calc(var(--reveal-distance) * -1), 0, 0); }
.reveal--right { transform: translate3d(var(--reveal-distance), 0, 0); }
.reveal--scale { transform: scale(0.94); filter: blur(8px); }
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 1.2s var(--ease-out);
}
.fade-in.is-visible { opacity: 1; }

/* Reveal especial para spec-cards — mais dramático
   Fade-up + scale-up + blur + stagger longo (0.2s entre cards) */
.spec-card.reveal {
  opacity: 0;
  transform: translate3d(0, 60px, 0) scale(0.9);
  filter: blur(12px);
  transition:
    opacity 1.2s var(--ease-out),
    transform 1.2s var(--ease-spring),
    filter 1s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 0.2s);
  will-change: opacity, transform, filter;
}
.spec-card.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

/* ==========================================================
   Animated rotating border (Linear/Vercel style)
   conic-gradient rotativo + mask-composite = só na borda
   ========================================================== */
@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

.shimmer-border {
  position: relative;
  isolation: isolate;
}
.shimmer-border::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: conic-gradient(
    from var(--border-angle),
    rgba(235, 41, 104, 0)    0deg,
    rgba(235, 41, 104, 0)    200deg,
    rgba(235, 41, 104, 1)    280deg,
    rgba(235, 41, 104, 0.45) 320deg,
    rgba(235, 41, 104, 0)    360deg
  );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
          mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: shimmerBorder 5s linear infinite;
  pointer-events: none;
  z-index: 2;
}
@keyframes shimmerBorder {
  to { --border-angle: 360deg; }
}

/* Stagger entre as 3 spec cards pra ondas alternadas */
.specialization__grid .spec-card.shimmer-border:nth-child(1)::after { animation-delay: 0s; }
.specialization__grid .spec-card.shimmer-border:nth-child(2)::after { animation-delay: -1.6s; }
.specialization__grid .spec-card.shimmer-border:nth-child(3)::after { animation-delay: -3.2s; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
input, select, textarea { font: inherit; color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(20px, 6vw, 80px);
}

/* ==========================================================
   NAVBAR — Floating pill com backdrop blur
   ========================================================== */
.navbar {
  position: fixed;
  top: clamp(14px, 2vh, 24px);
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 8px 8px 32px;
  background: rgba(15, 15, 15, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 12px 36px -8px rgba(0, 0, 0, 0.55),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  opacity: 0;
  transform: translate(-50%, -16px);
  animation: navbarIn 0.9s var(--ease-out) 0.2s forwards;
}
@keyframes navbarIn {
  to { opacity: 1; transform: translate(-50%, 0); }
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navbar__links a {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
  white-space: nowrap;
}
.navbar__links a:hover { color: var(--color-pink); }
.navbar__brand {
  color: #fff !important;
  font-family: var(--font-display) !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  letter-spacing: -0.01em !important;
}

.navbar__cta {
  display: inline-flex;
  align-items: center;
  padding: 11px 22px;
  background: #fff;
  color: #000;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.3s var(--ease-out),
    color 0.3s var(--ease-out),
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}
.navbar__cta:hover {
  background: var(--color-pink);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 22px -6px var(--color-pink-glow);
}

/* Mobile: simplifica */
@media (max-width: 880px) {
  .navbar { padding: 6px 6px 6px 18px; gap: 6px; }
  .navbar__links { gap: 16px; }
  .navbar__links a { font-size: 10px; letter-spacing: 0.12em; }
  .navbar__cta { padding: 9px 16px; font-size: 10px; letter-spacing: 0.12em; }
}
@media (max-width: 640px) {
  .navbar__links li:nth-child(1),
  .navbar__links li:nth-child(2),
  .navbar__links li:nth-child(4) { display: none; }
}

/* ==========================================================
   Reusable atoms
   ========================================================== */
/* Eyebrow — Figma: 13.8px Poppins Regular, tracking 5.382px = 0.39em */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 13.8px;
  letter-spacing: 0.39em;
  text-transform: uppercase;
  color: var(--color-text);
  margin: 0 0 32px;
  text-align: center;
}
.eyebrow--white { color: #fff; }

/* Badge — Figma: 14px Poppins Medium, tracking 7.7px = 0.55em
   padding 11px 16px, border 1px solid #eb2968, border-radius 800px */
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  min-height: 34px;
  border-radius: 800px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  border: 1px solid var(--color-pink);
  color: var(--color-text);
  background: transparent;
  font-family: var(--font-body);
  text-align: center;
  line-height: 1.4;
}
.badge--outline { border-color: var(--color-pink); color: var(--color-text); }
.badge--outline-light { border-color: var(--color-pink); color: #fff; }
.badge--wide { padding: 11px 32px; letter-spacing: 0.5em; }

.badge-wrap { display: flex; justify-content: center; margin-bottom: 32px; }

/* Buttons (pink pills with arrow circle) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: clamp(15px, 1.2vw, 17px);
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: #fff;
  background: var(--color-pink);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 22px -2px var(--color-pink-glow);
  transition:
    transform .35s var(--ease-out),
    box-shadow .35s var(--ease-out),
    background .25s var(--ease-out);
  white-space: nowrap;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  isolation: isolate;
}
.btn::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,.22) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .7s var(--ease-out);
  z-index: -1;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 38px -8px var(--color-pink-glow), 0 0 0 1px rgba(255,255,255,.25) inset;
}
.btn:hover::before { transform: translateX(110%); }
.btn:active { transform: translateY(-1px); transition-duration: .12s; }
.btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}
.btn--lg { padding: 20px 36px; font-size: 16px; }

/* Subtle ambient pulse — only when NOT hovered, draws eye to CTA */
@keyframes btnAmbientPulse {
  0%, 100% { box-shadow: 0 0 22px -2px var(--color-pink-glow); }
  50%      { box-shadow: 0 0 32px 2px var(--color-pink-glow); }
}
.btn:not(:hover) {
  animation: btnAmbientPulse 3.5s var(--ease-in-out) infinite;
}

.btn__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 29px; height: 29px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-pink);
  transition: transform .35s var(--ease-out);
}
.btn:hover .btn__arrow { transform: translateX(4px) rotate(-2deg); }
.btn__arrow svg { width: 13px; height: 8px; transition: transform .35s var(--ease-out); }

/* ==========================================================
   SEÇÃO 1 — HERO
   ========================================================== */
/* ==========================================================
   HERO V2 — Editorial Magazine Style
   - Aurora gradient drift no bg
   - Grid pattern subtil
   - Side accents (BR/2026, SCROLL ↓)
   - Eyebrow com hairlines
   - Logo HYPEA pulsando
   - Headline + Subtitle + CTAs
   ========================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  background: #000;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: clamp(104px, 15vh, 148px) clamp(24px, 5vw, 80px) clamp(40px, 6vh, 68px);
}

/* Subtle pink glow over pure black (not a colorful wash) */
.hero__aurora {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero__aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(130px);
  will-change: transform;
}
.hero__aurora-blob--1 {
  width: 44vw; height: 44vw;
  top: -6%; left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(235, 41, 104, 0.28) 0%, rgba(235, 41, 104, 0.07) 42%, transparent 70%);
  animation: heroAurora1 28s ease-in-out infinite;
}
.hero__aurora-blob--2 {
  width: 32vw; height: 32vw;
  bottom: -14%; right: -8%;
  background: radial-gradient(circle, rgba(235, 41, 104, 0.16) 0%, transparent 68%);
  animation: heroAurora2 34s ease-in-out infinite;
}
.hero__aurora-blob--3 {
  width: 26vw; height: 26vw;
  top: 42%; left: -8%;
  background: radial-gradient(circle, rgba(235, 41, 104, 0.13) 0%, transparent 66%);
  animation: heroAurora3 30s ease-in-out infinite;
}
@keyframes heroAurora1 {
  0%, 100% { transform: translateX(-50%) translateY(0) scale(1); }
  50%      { transform: translateX(-50%) translateY(4vh) scale(1.12); }
}
@keyframes heroAurora2 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(-6vw, -6vh, 0) scale(1.18); }
}
@keyframes heroAurora3 {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(5vw, -5vh, 0) scale(1.2); }
}

/* Vignette → reforça o preto absoluto nas bordas */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 95% 75% at 50% 42%, transparent 38%, rgba(0, 0, 0, 0.6) 100%);
}

/* Grid pattern overlay — bem sutil sobre o preto */
.hero__grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 28%, transparent 78%);
          mask-image: radial-gradient(ellipse at center, #000 28%, transparent 78%);
}

/* Side accent (SCROLL ↓) */
.hero__side {
  position: absolute;
  z-index: 3;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
}
.hero__side--left {
  top: 50%;
  left: clamp(16px, 1.8vw, 28px);
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.hero__side--right {
  bottom: clamp(20px, 3vh, 40px);
  right: clamp(16px, 1.8vw, 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero__side--right svg {
  width: 14px;
  height: 22px;
  animation: scrollBob 2s ease-in-out infinite;
}
@keyframes scrollBob {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%      { transform: translateY(5px); opacity: 1; }
}

/* Top: eyebrow pill com hairlines */
.hero__top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  width: 100%;
  flex-shrink: 0;
}
.hero__hairline {
  height: 1px;
  flex: 1;
  max-width: clamp(40px, 8vw, 110px);
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.35) 50%, transparent);
}
.hero__eyebrow {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(10px, 0.85vw, 12.5px);
  letter-spacing: 0.4em;
  color: rgba(255, 255, 255, 0.92);
  text-transform: uppercase;
  white-space: nowrap;
  margin: 0;
  padding: 0;
}

/* Center: logo + headline + subtitle — distribuídos com folga e centralizados */
.hero__center {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
  width: 100%;
  max-width: 1080px;
  gap: clamp(26px, 4vh, 48px);
}

.hero__logo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__logo {
  width: clamp(220px, 32vw, 440px);
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
  animation: logoBreathe 6s ease-in-out infinite;
  filter: drop-shadow(0 0 55px rgba(235, 41, 104, 0.4));
}
@keyframes logoBreathe {
  0%, 100% {
    transform: scale(1);
    filter: drop-shadow(0 0 45px rgba(235, 41, 104, 0.35));
  }
  50% {
    transform: scale(1.02);
    filter: drop-shadow(0 0 70px rgba(235, 41, 104, 0.55));
  }
}
.hero__logo-glow {
  position: absolute;
  width: 120%;
  height: 220%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(ellipse, rgba(235, 41, 104, 0.3) 0%, transparent 60%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
  animation: glowPulse 6s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.55; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 0.9;  transform: translate(-50%, -50%) scale(1.08); }
}

/* Headline — agora o elemento dominante */
.hero__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(32px, 5.2vw, 78px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: clamp(2px, 0.5vh, 8px);
  margin: 0;
}
.hero__title-line { display: block; }
.hero__title .thin { font-weight: 200; letter-spacing: -0.025em; color: rgba(255, 255, 255, 0.96); }
.hero__title strong {
  font-weight: 700;
  font-style: normal;
  letter-spacing: -0.03em;
  color: var(--color-pink);
  text-shadow: 0 0 38px rgba(235, 41, 104, 0.5);
}

.hero__subtitle {
  max-width: 620px;
  font-family: var(--font-body);
  font-size: clamp(14px, 1.05vw, 16.5px);
  line-height: 1.65;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto;
}

/* Bottom: CTAs */
.hero__ctas {
  position: relative;
  z-index: 2;
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
}

/* ==========================================================
   SEÇÃO 2 — POR QUE A HYPEA (light, decorative blob)
   ========================================================== */
.why {
  position: relative;
  background: #fff;
  padding: var(--section-py) 0;
  overflow: hidden;
}
/* Decorative asterisk — Figma: Dongle Bold, 7000px, tracking -70px,
   color rgba(0,0,0,0.06). display:inline-block para sizing pelo caractere */
.deco-asterisk {
  position: absolute;
  font-family: "Dongle", sans-serif;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.06);
  line-height: 0.9;
  letter-spacing: -0.05em;
  text-align: center;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  display: inline-block;
}

/* Section 2 — Asterisk lateral direita (matching screenshot)
   Centro do caractere a 75% from left (visível), pétalas top/bottom/right vazam */
.deco-asterisk--why {
  top: 50%;
  left: 75%;
  right: auto;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  font-size: clamp(900px, 110vw, 2200px);
}

/* Asterisk — Seção 2 — estático, encaixa de topo a base, ancorado à direita */
.why__asterisk {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: auto;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  mix-blend-mode: multiply;
}

/* ===== Seção 2 — 100% Figma fidelity =====
   Section 1920x1241 → padding 139px top/bottom (= 11.2% of height)
   Content em left column (x=196 = 10.2% from left), max-width 869px */
/* ===== Particles canvas (estrelas com conexões mouse-aware) ===== */
.particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  display: block;
}

.why { padding: clamp(80px, 11.2vh, 139px) 0; }
.why__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1920px;
  padding-left: clamp(20px, 10.2vw, 196px);
  padding-right: 0;
  margin: 0 auto;
}
.why__col {
  max-width: 869px;
  width: 100%;
}

/* Eyebrow — Figma: 13.8px Poppins Regular, tracking 5.382px,
   width 620px, text-center, color black */
/* Eyebrow — Figma: 13.8px Poppins Regular, tracking 5.382px = 0.39em
   width 620px, text-center, gap to badge: 70px */
.why__eyebrow {
  display: block;
  width: 620px;
  max-width: 100%;
  margin: 0 0 32px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(11px, 0.95vw, 13.8px);
  line-height: 1.08;
  letter-spacing: 0.39em;
  text-align: center;
  color: #000;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Badge — Figma: 14px Poppins Medium, tracking 7.7px, padding 11px 16px,
   border 1px solid #eb2968, border-radius 800px, width 278px height 34px */
.why__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 28px;
  padding: 11px 16px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.55em;
  border: 1px solid var(--color-pink);
  border-radius: 800px;
  color: #000;
  text-transform: uppercase;
  background: transparent;
}

/* Title — padrão das demais seções (max 50px)
   Linha 1: Medium 700 | Linha 2: Thin 200 */
.why__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 36px;
  color: #000;
  display: flex;
  flex-direction: column;
  max-width: 720px;
}
.why__title-medium { font-weight: 700; display: block; letter-spacing: -0.022em; }
.why__title-thin { font-weight: 200; display: block; letter-spacing: -0.02em; }
.why__title .nowrap { white-space: nowrap; }

/* Body — padrão Poppins, escala 15-17px */
.why__copy {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.55;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--color-text);
  text-align: justify;
  max-width: 580px;
  margin: 0;
}
.why__copy p { margin: 0 0 18px; }
.why__copy p:last-child { margin: 0; }

/* Pink quote — mesmo tamanho do title (50px max), Light + Medium
   Cada linha entra com fade-up + blur sequencial */
.why__quote {
  margin: 56px 0 0;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--color-pink);
  font-weight: 300;
  display: flex;
  flex-direction: column;
  max-width: 100%;
}
.why__quote span {
  display: block;
  white-space: nowrap;
  opacity: 0;
  filter: blur(4px);
  /* Default color = dim/inactive (lines fora da spotlight) */
  color: rgba(235, 41, 104, 0.32);
  text-shadow: none;
  transition:
    opacity .9s var(--ease-out),
    filter .8s var(--ease-out);
}
.why__quote.is-visible span:nth-child(1) { transition-delay: 0.12s; animation-delay: 1.0s; }
.why__quote.is-visible span:nth-child(2) { transition-delay: 0.28s; animation-delay: 2.8s; }
.why__quote.is-visible span:nth-child(3) { transition-delay: 0.44s; animation-delay: 4.6s; }
.why__quote.is-visible span {
  opacity: 1;
  filter: blur(0);
  animation: quoteSpotlight 5.4s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  transform-origin: left center;
  display: inline-block;
}
.why__quote strong { font-weight: 700; font-style: normal; }

/* Spotlight rolling — entrada e saída SUAVE com curvas progressivas.
   IN ramp (0 → 18%) | Hold ativo (18 → 35%) | OUT ramp (35 → 55%) | Hold inativo (55 → 100%)
   Movement & glow easing-in-out cinematográfico */
@keyframes quoteSpotlight {
  0% {
    color: rgba(235, 41, 104, 0.3);
    text-shadow: 0 0 0 rgba(235, 41, 104, 0);
    transform: scale(1);
  }
  /* Curva suave durante o ramp UP — passa por valores intermediários */
  9% {
    color: rgba(235, 41, 104, 0.7);
    text-shadow: 0 0 16px rgba(235, 41, 104, 0.25);
    transform: scale(1.035);
  }
  18% {
    color: rgba(235, 41, 104, 1);
    text-shadow: 0 0 32px rgba(235, 41, 104, 0.5);
    transform: scale(1.06);
  }
  /* Hold ativo */
  35% {
    color: rgba(235, 41, 104, 1);
    text-shadow: 0 0 32px rgba(235, 41, 104, 0.5);
    transform: scale(1.06);
  }
  /* Curva suave durante o ramp DOWN */
  46% {
    color: rgba(235, 41, 104, 0.7);
    text-shadow: 0 0 16px rgba(235, 41, 104, 0.25);
    transform: scale(1.025);
  }
  55%, 100% {
    color: rgba(235, 41, 104, 0.3);
    text-shadow: 0 0 0 rgba(235, 41, 104, 0);
    transform: scale(1);
  }
}

/* ==========================================================
   SEÇÃO 3 — COMO FUNCIONA (dark)
   ========================================================== */
.how {
  background: var(--color-dark);
  color: #fff;
  padding: var(--section-py) 0;
}
/* Figma: 50px Neue Haas, line-height 1.1, tracking -0.015em
   Linha 1: Medium 700 | Linha 2: Light 300 */
.how__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 56px;
  color: #fff;
  max-width: 1129px;
  margin-left: auto;
  margin-right: auto;
}
.how__title strong { font-weight: 700; display: block; letter-spacing: -0.022em; }
.how__title span { font-weight: 200; display: block; letter-spacing: -0.02em; }

.how__card {
  max-width: 1140px; margin: 0 auto;
  background: #0d0d0d;
  border: 1px solid rgba(235, 41, 104, .18);
  border-radius: 22px;
  padding: clamp(32px, 4vw, 60px);
  box-shadow: 0 0 40px -8px rgba(235,41,104,.18);
}

.how__steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(24px, 4vw, 60px);
}
.step {
  transition: transform .5s var(--ease-out);
  cursor: default;
}
.step:hover { transform: translateY(-6px); }
.step:hover .step__badge {
  box-shadow: 0 10px 26px -4px var(--color-pink-glow);
  transform: scale(1.03);
}
.step__badge {
  transition:
    box-shadow .4s var(--ease-out),
    transform .4s var(--ease-out);
}
.step:hover h3 { color: #ffd9e6; }
.step h3 { transition: color .3s var(--ease-out); }
.step h3 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 22px 0 14px;
  line-height: 1.25;
  color: #fff;
}
.step p {
  font-size: 14px; line-height: 1.55;
  color: #a8a8a8;
  margin: 0;
}
.step__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--color-pink);
  color: #fff;
  padding: 6px 14px 6px 6px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.step__badge-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 50%;
  background: #fff; color: var(--color-pink);
}
.step__badge-icon svg { width: 11px; height: 7px; }

.how__cta { display: flex; justify-content: center; margin-top: 56px; }

/* ==========================================================
   SEÇÃO 4 — NOSSA SOLUÇÃO + FORM
   ========================================================== */
.solution {
  background: #fff;
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}
.solution .solution__grid { position: relative; z-index: 1; }
.solution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.solution__copy .eyebrow { text-align: left; }
.solution__copy .badge { margin-bottom: 32px; }

/* Figma: 50px Neue Haas, Medium + Light, tracking -0.015em */
.solution__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 30px;
  max-width: 869px;
}
.solution__title strong { font-weight: 700; display: block; letter-spacing: -0.022em; }
.solution__title span { font-weight: 200; display: block; letter-spacing: -0.02em; }

.solution__highlight {
  color: var(--color-pink);
  font-weight: 700;
  font-size: 17px;
  margin: 0 0 22px;
}
.solution__copy-body {
  color: var(--color-text-soft); font-size: 15px; line-height: 1.55;
}
.solution__copy-body p { margin: 0 0 14px; }

/* CTA Section 4 — botão padrão pink, mesma identidade dos outros CTAs */
.solution__cta-btn {
  margin-top: 32px;
  align-self: flex-start;
}

/* ==========================================================
   DIAG CARD — substitui os formulários (Seções 4 e 8)
   Card escuro com eyebrow rosa + headline + CTA pink full-width
   ========================================================== */
.diag-card {
  background: #0a0a0a;
  border: 1px solid rgba(235, 41, 104, 0.2);
  border-radius: 22px;
  padding: clamp(32px, 4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.5vw, 32px);
  box-shadow:
    0 28px 70px -20px rgba(0, 0, 0, 0.55),
    0 0 36px -12px rgba(235, 41, 104, 0.18);
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
/* Subtle ambient glow */
.diag-card::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(235, 41, 104, 0.18), transparent 70%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}

.diag-card__eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(11px, 0.85vw, 13px);
  letter-spacing: 0.22em;
  color: var(--color-pink);
  text-transform: uppercase;
  margin: 0;
}

.diag-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.2;
  letter-spacing: -0.018em;
  color: #fff;
  margin: 0;
}

.diag-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 22px 32px;
  background: var(--color-pink);
  color: #fff;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: clamp(12px, 0.95vw, 14px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  margin-top: clamp(8px, 1vw, 16px);
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    background 0.25s var(--ease-out);
  box-shadow: 0 0 30px -4px rgba(235, 41, 104, 0.45);
}
.diag-card__cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px -8px rgba(235, 41, 104, 0.6);
}
.diag-card__cta:active { transform: translateY(-1px); transition-duration: 0.12s; }
.diag-card__cta svg {
  width: 16px;
  height: 12px;
  transition: transform 0.35s var(--ease-out);
}
.diag-card__cta:hover svg { transform: translateX(4px); }

/* ==========================================================
   FORM (light & dark variants) — legacy, mantido caso necessário
   ========================================================== */
.form {
  background: #fff;
  border: 1.5px solid var(--color-pink);
  border-radius: 14px;
  padding: clamp(24px, 3vw, 40px);
  display: flex; flex-direction: column; gap: 18px;
}
.form__field { display: flex; flex-direction: column; gap: 6px; }
.form__field label {
  font-size: 14px; font-weight: 500;
  color: var(--color-text);
}
.form__field input,
.form__field select {
  height: 39px;
  border: 0;
  background: #ededed;
  border-radius: var(--radius-input);
  padding: 0 14px;
  font-size: 14px;
  color: var(--color-text);
  outline: none;
  transition: box-shadow .15s ease;
}
.form__field input,
.form__field select { transition: box-shadow .25s var(--ease-out), background .2s var(--ease-out); }
.form__field input:focus,
.form__field select:focus { box-shadow: 0 0 0 2px var(--color-pink); background: #f7f7f7; }
.form--dark .form__field input:focus,
.form--dark .form__field select:focus { background: #222; }

.form__submit {
  margin-top: 8px;
  background: var(--color-pink);
  color: #fff;
  height: 56px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  transition: transform .18s ease, box-shadow .18s ease;
}
.form__submit:hover { transform: translateY(-2px); box-shadow: 0 8px 28px -4px var(--color-pink-glow); }

.form__footnote {
  text-align: center;
  margin: 4px 0 0;
  font-size: 12px;
  color: var(--color-muted);
}

/* dark variant for final CTA */
.form--dark { background: transparent; border-color: var(--color-pink); }
.form--dark .form__field label { color: #fff; }
.form--dark .form__field input,
.form--dark .form__field select {
  background: #1a1a1a; color: #fff;
}
.form--dark .form__submit { background: var(--color-pink); }
.form__footnote--light { color: rgba(255,255,255,.7); }

/* ==========================================================
   SEÇÃO 5 — ESPECIALIZAÇÃO
   ========================================================== */
.specialization {
  background: var(--color-dark);
  color: #fff;
  padding: var(--section-py) 0;
}
/* Figma: 50px Neue Haas Medium */
.specialization__title {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 56px;
  color: #fff;
  max-width: 1129px;
  margin-left: auto;
  margin-right: auto;
}

.specialization__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1140px; margin: 0 auto;
}
.spec-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 22px;
  transition:
    transform .6s var(--ease-out),
    border-color .6s var(--ease-out),
    box-shadow .6s var(--ease-out),
    background .6s var(--ease-out);
  cursor: default;
  position: relative;
  isolation: isolate;
}
/* Spotlight gradient that follows hover (like Stripe/Linear) */
.spec-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    400px circle at var(--mx, 50%) var(--my, 50%),
    rgba(235, 41, 104, 0.18),
    transparent 40%
  );
  opacity: 0;
  transition: opacity .5s var(--ease-out);
  pointer-events: none;
  z-index: -1;
}
.spec-card:hover {
  transform: translateY(-8px);
  border-color: rgba(235, 41, 104, 0.55);
  background: rgba(255,255,255,0.09);
  box-shadow:
    0 30px 70px -20px rgba(235, 41, 104, .4),
    0 0 0 1px rgba(235, 41, 104, .15) inset;
}
.spec-card:hover::before { opacity: 1; }
/* Icon tile — substitui as imagens, com gradiente da marca + draw animation */
.spec-card__icon {
  width: 60px;
  height: 60px;
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--color-pink);
  background:
    radial-gradient(120% 120% at 30% 20%, rgba(235, 41, 104, 0.22), rgba(235, 41, 104, 0.05));
  border: 1px solid rgba(235, 41, 104, 0.32);
  position: relative;
  isolation: isolate;
  transition:
    transform .6s var(--ease-spring),
    background .6s var(--ease-out),
    border-color .6s var(--ease-out),
    box-shadow .6s var(--ease-out);
}
.spec-card__icon::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: radial-gradient(60% 60% at 50% 50%, rgba(235, 41, 104, 0.35), transparent 70%);
  opacity: 0;
  filter: blur(10px);
  z-index: -1;
  transition: opacity .6s var(--ease-out);
}
.spec-card__icon svg {
  width: 30px;
  height: 30px;
  overflow: visible;
}
/* Stroke draw-in (Framer "draw") — escalonado pelo --i do card */
.spec-card__icon svg [data-draw] {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.1s var(--ease-out);
  transition-delay: calc(0.35s + var(--i, 0) * 0.2s);
}
.spec-card.is-visible .spec-card__icon svg [data-draw] { stroke-dashoffset: 0; }

.spec-card:hover .spec-card__icon {
  transform: translateY(-4px) scale(1.08);
  background: radial-gradient(120% 120% at 30% 20%, rgba(235, 41, 104, 0.4), rgba(235, 41, 104, 0.12));
  border-color: rgba(235, 41, 104, 0.7);
  box-shadow: 0 14px 30px -10px rgba(235, 41, 104, 0.55);
}
.spec-card:hover .spec-card__icon::after { opacity: 1; }

.spec-card h3 {
  font-family: var(--font-card);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  margin: 0;
  color: #fff;
}
.spec-card p {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; line-height: 1.5;
  color: #d8d8d8;
  margin: 0;
}
.spec-card__check {
  flex: none; display: inline-flex;
  width: 20px; height: 15px;
  margin-top: 4px;
}
.spec-card__check svg { width: 100%; height: 100%; }

/* ==========================================================
   SEÇÃO 6 — MARCAS QUE CONFIAM
   ========================================================== */
.brands {
  background: #fff;
  padding: var(--section-py) 0 calc(var(--section-py) - 30px);
  position: relative;
  overflow: hidden;
}
.brands .container { position: relative; z-index: 1; }

/* Figma: 50px Neue Haas, Medium + Light */
.brands__title {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 70px;
  color: var(--color-text);
  max-width: 1129px;
  margin-left: auto;
  margin-right: auto;
}
.brands__title strong { font-weight: 700; display: block; letter-spacing: -0.022em; }
.brands__title span { font-weight: 200; display: block; letter-spacing: -0.02em; }

/* ----- Marquee infinito (estilo MG: linear, loop ~30s) ----- */
.brands__strip {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 30px;
  animation: marqueeX 32s linear infinite;
}
.brands__viewport {
  position: relative;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}
.brands__viewport:hover .brands__strip { animation-play-state: paused; }
@keyframes marqueeX {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

.brand {
  display: flex; align-items: center; gap: 16px;
  flex: none;
  transition: transform .45s var(--ease-out);
  cursor: default;
}
.brand:hover {
  transform: translateY(-6px);
}
.brand:hover .brand__avatar {
  transform: scale(1.08);
  box-shadow: 0 10px 24px -8px rgba(0, 0, 0, .3);
}
.brand:hover .brand__meta strong { color: var(--color-pink); }
.brand__avatar {
  transition: transform .45s var(--ease-out), box-shadow .45s var(--ease-out);
}
.brand__meta strong { transition: color .3s var(--ease-out); }
.brand__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  flex: none;
  overflow: hidden;
  background: #f7f7f7;
}
.brand__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand__meta { display: flex; flex-direction: column; }
.brand__meta strong { font-size: 16px; font-weight: 700; color: var(--color-text); }
.brand__meta span { font-size: 14px; color: var(--color-muted); margin-top: 2px; }
.brand__divider { width: 1px; height: 86px; background: #e1e1e1; }

/* ==========================================================
   SEÇÃO 7 — FAQ
   ========================================================== */
.faq {
  background: #fff;
  padding: var(--section-py) 0;
}
.faq__list {
  max-width: 1280px; margin: 50px auto 0;
  display: flex; flex-direction: column; gap: 22px;
}
.faq__item {
  background: #0a0a0a;
  border: 1.5px solid var(--color-pink);
  border-radius: 14px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 0 26px -10px rgba(235, 41, 104, .35);
  transition:
    box-shadow .45s var(--ease-out),
    transform .45s var(--ease-out),
    border-color .45s var(--ease-out);
}
.faq__item:hover {
  box-shadow: 0 0 38px -8px rgba(235, 41, 104, .55);
  transform: translateY(-2px);
}
.faq__item[open] {
  box-shadow: 0 0 44px -10px rgba(235, 41, 104, .55);
}
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 30px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.01em;
  color: #fff;
  transition: color .25s var(--ease-out);
}
.faq__item summary:hover { color: #ffd9e6; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__icon {
  width: 45px; height: 45px;
  border-radius: 8px;
  background: var(--color-pink);
  position: relative;
  flex: none;
  transition: transform .35s var(--ease-out), background .25s var(--ease-out);
}
.faq__item summary:hover .faq__icon { transform: rotate(90deg); }
.faq__item[open] summary:hover .faq__icon { transform: rotate(0deg); }
.faq__icon::before, .faq__icon::after {
  content: ""; position: absolute; left: 50%; top: 50%;
  background: #fff;
  transform: translate(-50%, -50%);
  border-radius: 1px;
}
.faq__icon::before { width: 14px; height: 2px; }
.faq__icon::after {
  width: 2px; height: 14px;
  transition: transform .35s var(--ease-out);
}
.faq__item[open] .faq__icon::after { transform: translate(-50%, -50%) scaleY(0); }

/* Smooth height + fade — grid 0fr→1fr trick para anim natural */
.faq__answer {
  display: grid;
  grid-template-rows: 1fr;
  margin: 0 30px;
  padding: 0;
  border-top: 1px dashed rgba(255,255,255,.15);
  animation: faqAnswerIn .55s var(--ease-out);
}
@keyframes faqAnswerIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
    filter: blur(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}
.faq__answer p {
  margin: 0;
  padding: 18px 0 24px;
  font-size: 14px; line-height: 1.6;
  color: #c9c9c9;
}

/* ==========================================================
   SEÇÃO 8 — CTA FINAL
   ========================================================== */
.final-cta {
  background: var(--color-dark);
  color: #fff;
  padding: var(--section-py) 0;
}
/* Figma: 50px Neue Haas Medium + Light */
.final-cta__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 22px;
  color: #fff;
  max-width: 619px;
}
.final-cta__title strong { font-weight: 700; display: block; letter-spacing: -0.022em; }
.final-cta__title span { font-weight: 200; display: block; letter-spacing: -0.02em; }
.final-cta__copy {
  font-size: 16px; line-height: 1.55; color: #d2d2d2;
  max-width: 480px;
  margin: 0;
}

/* ==========================================================
   RESPONSIVE — Tablet
   ========================================================== */
@media (max-width: 1280px) {
  .why__inner { padding: 0 clamp(20px, 4vw, 80px); }
}
@media (max-width: 980px) {
  .solution__grid { grid-template-columns: 1fr; gap: clamp(40px, 6vh, 70px); }
  .how__steps { grid-template-columns: 1fr; gap: 36px; }
  .specialization__grid { grid-template-columns: 1fr; max-width: 480px; gap: 28px; }
  .why__col { max-width: 100%; }
}

/* ==========================================================
   RESPONSIVE — Mobile (≤ 768px)
   Centraliza tudo, stack columns, compacta typography
   ========================================================== */
@media (max-width: 768px) {

  /* === HERO === */
  .hero {
    padding: clamp(96px, 13vh, 110px) 16px clamp(36px, 6vh, 56px);
  }
  .hero__top {
    gap: 12px;
    margin-bottom: clamp(28px, 4.5vh, 44px);
  }
  .hero__hairline { max-width: 24px; }
  .hero__eyebrow {
    font-size: 9px;
    letter-spacing: 0.28em;
    white-space: normal;
    line-height: 1.4;
    text-align: center;
  }
  .hero__logo {
    width: clamp(180px, 62vw, 300px);
    max-width: 84vw;
  }
  .hero__center {
    gap: clamp(22px, 4vh, 38px);
  }
  .hero__title {
    font-size: clamp(28px, 8vw, 40px);
    gap: 6px;
  }
  .hero__subtitle {
    font-size: 13px;
    line-height: 1.6;
    max-width: 92%;
  }
  .hero__ctas {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  .hero__ctas .btn { width: 100%; padding: 16px 20px; font-size: 13px; }
  .hero__side--right { display: none; }

  /* === NAVBAR === */
  .navbar {
    top: 12px;
    padding: 5px 5px 5px 14px;
    gap: 4px;
  }
  .navbar__links { gap: 12px; }
  .navbar__links a { font-size: 9px; letter-spacing: 0.1em; }
  .navbar__cta { padding: 8px 12px; font-size: 9px; letter-spacing: 0.1em; }

  /* === SEÇÃO 2 — POR QUE A HYPEA (centraliza tudo) === */
  .why { padding: clamp(70px, 9vh, 110px) 0; }
  .why__inner { padding: 0 20px; display: flex; justify-content: center; }
  .why__col {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .why__eyebrow {
    width: auto;
    max-width: 100%;
    font-size: 11px;
    letter-spacing: 0.32em;
    margin: 0 0 24px;
    white-space: normal;
    line-height: 1.5;
  }
  .why__badge { margin: 0 0 28px; font-size: 11px; letter-spacing: 0.4em; padding: 9px 14px; }
  .why__title {
    font-size: clamp(28px, 7vw, 38px);
    margin: 0 0 28px;
    text-align: center;
    align-items: center;
    max-width: 100%;
  }
  .why__copy {
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
    max-width: 100%;
    margin: 0 0 28px;
  }
  .why__quote {
    font-size: clamp(28px, 7vw, 38px);
    text-align: center;
    align-items: center;
    margin: 0;
  }
  .why__quote span {
    white-space: normal;
    transform-origin: center center !important;
  }
  .why__asterisk {
    top: 50%;
    height: auto;
    width: 130vw;
    transform: translateY(-50%);
    right: -50%;
    opacity: 0.5;
  }

  /* === SEÇÃO 3 — COMO FUNCIONA === */
  .how__title { font-size: clamp(26px, 7vw, 36px); margin-bottom: 36px; }
  .how__card { padding: 28px 22px; border-radius: 18px; }
  .how__steps { gap: 32px; }
  .step h3 { font-size: 14px; }
  .step p { font-size: 13px; }
  .how__cta { margin-top: 36px; }

  /* === SEÇÃO 4 — NOSSA SOLUÇÃO + DIAG CARD === */
  .solution { padding: clamp(70px, 9vh, 110px) 0; }
  .solution__grid > * { min-width: 0; }
  .solution__copy {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-width: 0;
  }
  .solution__copy .eyebrow { text-align: center; }
  .solution__title { text-align: center; font-size: clamp(26px, 7vw, 36px); max-width: 100%; }
  .solution__highlight { text-align: center; max-width: 100%; }
  .solution__copy-body { text-align: center; max-width: 100%; }
  .solution__copy-body p { text-align: center; }
  .solution__cta-btn {
    align-self: center;
    width: 100%;
    max-width: 100%;
    padding: 14px 18px;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.08em;
    white-space: normal;
    line-height: 1.25;
    text-align: center;
  }
  .solution__cta-btn > span:first-child {
    text-wrap: balance;
    max-width: 22ch;
  }

  .diag-card {
    padding: 28px 22px;
    border-radius: 18px;
    gap: 18px;
    text-align: center;
    align-items: center;
  }
  .diag-card__title { font-size: 20px; line-height: 1.3; text-align: center; }
  .diag-card__cta {
    width: 100%;
    padding: 18px 20px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }

  /* === SEÇÃO 5 — ESPECIALIZAÇÃO === */
  .specialization { padding: clamp(70px, 9vh, 110px) 0; }
  .specialization__title { font-size: clamp(26px, 7vw, 36px); margin-bottom: 36px; }
  .spec-card { padding: 22px; border-radius: 14px; }
  .spec-card__icon { width: 54px; height: 54px; border-radius: 14px; }
  .spec-card__icon svg { width: 27px; height: 27px; }
  .spec-card h3 { font-size: 18px; }
  .spec-card p { font-size: 14px; }

  /* === SEÇÃO 6 — MARCAS === */
  .brands { padding: clamp(70px, 9vh, 110px) 0; }
  .brands__title { font-size: clamp(24px, 7vw, 34px); margin-bottom: 44px; }
  .brands__strip { gap: 24px; animation-duration: 24s; }
  .brand__divider { display: none; }
  .brand__avatar { width: 64px; height: 64px; }
  .brand__meta strong { font-size: 14px; }
  .brand__meta span { font-size: 12px; }

  /* === SEÇÃO 7 — FAQ === */
  .faq { padding: clamp(70px, 9vh, 110px) 0; }
  .faq__list { margin-top: 36px; gap: 14px; }
  .faq__item { border-radius: 12px; }
  .faq__item summary {
    padding: 18px 18px;
    font-size: 14px;
    gap: 14px;
  }
  .faq__icon { width: 34px; height: 34px; border-radius: 6px; }
  .faq__answer { margin: 0 18px; padding: 16px 0 22px; }
  .faq__answer p { font-size: 13px; }

  /* === SEÇÃO 8 — CTA FINAL === */
  .final-cta { padding: clamp(70px, 9vh, 110px) 0; }
  .final-cta .solution__copy { text-align: center; align-items: center; }
  .final-cta__title { font-size: clamp(26px, 7vw, 36px); text-align: center; max-width: 100%; }
  .final-cta__copy { text-align: center; max-width: 100%; }

  /* === ATOMS === */
  .container { padding-inline: 20px; }
  .eyebrow { font-size: 11px; letter-spacing: 0.32em; }
  .badge { font-size: 11px; letter-spacing: 0.4em; padding: 9px 14px; }
  .badge--wide { font-size: 10px; letter-spacing: 0.3em; padding: 9px 18px; }
  .btn { font-size: 13px; padding: 16px 22px; }

  /* Reduzir orbes/particles em mobile (performance) */
  .particles { opacity: 0.5; }

  /* Aurora blobs no hero — sutis sobre o preto */
  .hero__aurora-blob--1 { width: 80vw; height: 80vw; }
  .hero__aurora-blob--2 { width: 64vw; height: 64vw; }
  .hero__aurora-blob--3 { width: 56vw; height: 56vw; }
}

/* ==========================================================
   RESPONSIVE — Laptop / short desktop viewports
   Logo permanece no topo, título + subtítulo descem pra preencher
   o espaço acima dos CTAs (margin-top: auto absorve o vazio).
   Não afeta monitor grande (≥ 901px de altura).
   ========================================================== */
@media (min-width: 769px) and (max-height: 900px) {
  .hero {
    padding-top: clamp(92px, 11vh, 116px);
    padding-bottom: clamp(20px, 3vh, 36px);
  }
  .hero__logo { width: clamp(200px, 26vw, 360px); }
  .hero__center { gap: clamp(20px, 3vh, 36px); }
}

@media (min-width: 769px) and (max-height: 680px) {
  .hero { padding-top: clamp(88px, 12vh, 104px); padding-bottom: 16px; }
  .hero__logo { width: clamp(170px, 22vw, 300px); }
  .hero__center { gap: clamp(16px, 2.4vh, 28px); }
  .hero__title { font-size: clamp(26px, 4vw, 50px); }
  .hero__subtitle { font-size: 13px; line-height: 1.55; }
}

/* ==========================================================
   RESPONSIVE — Small mobile (≤ 480px)
   ========================================================== */
@media (max-width: 480px) {
  .hero__logo { width: clamp(160px, 56vw, 240px); }
  .hero__title {
    font-size: clamp(24px, 8.5vw, 34px);
    gap: 4px;
  }
  .hero__subtitle {
    font-size: 12px;
    line-height: 1.6;
  }
  .why__title, .why__quote { font-size: clamp(24px, 7vw, 32px); }
  .how__title, .specialization__title, .brands__title, .final-cta__title, .solution__title {
    font-size: clamp(22px, 6.5vw, 30px);
  }
  .diag-card__title { font-size: 18px; }
  .navbar__links a { font-size: 8px; letter-spacing: 0.08em; }
  .navbar__cta { font-size: 8px; padding: 7px 10px; }
}

/* ==========================================================
   Reduced motion (a11y)
   ========================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
  .why__quote span {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    animation: none !important;
    color: var(--color-pink) !important;
    text-shadow: none !important;
  }
  .brands__strip { animation: none !important; }
  .hero__bg { opacity: 1 !important; transform: none !important; }
  .why__asterisk { animation: none !important; }
  .btn:not(:hover) { animation: none !important; }
  .shimmer-border::after { animation: none !important; opacity: 0.4; }
  .particles { display: none !important; }
  .hero__aurora-blob,
  .hero__logo,
  .hero__logo-glow,
  .hero__side--right svg { animation: none !important; }
}
