/* ════════════════════════════════════════════════════════════════════
   Easy Salon — Design System (componentes mestres)
   ────────────────────────────────────────────────────────────────────
   Fonte da verdade visual: a página inicial (home.html).
   Todas as outras páginas devem importar este arquivo e usar APENAS
   os tokens e classes definidos aqui.

   Atualizar este arquivo quando, e somente quando, a regra na home
   mudar. Use validate_components.py para conferir conformidade.
   ════════════════════════════════════════════════════════════════════ */


/* ─── Fonts ─────────────────────────────────────────────────────────── */
@font-face {
  font-family: 'Gyst';
  src: url('/fonts/Gyst-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gyst';
  src: url('/fonts/Gyst-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gyst';
  src: url('/fonts/Gyst-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Gyst';
  src: url('/fonts/Gyst-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gyst';
  src: url('/fonts/Gyst-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Manrope';
  src: url('/fonts/Manrope.ttf') format('truetype-variations');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}


/* ─── Tokens ────────────────────────────────────────────────────────── */
:root {
  /* Surfaces & text */
  --c-bg: rgb(242, 239, 230);          /* canvas */
  --c-card: rgba(251, 251, 251, 0.5);  /* card surface */
  --c-card-2: rgb(246, 245, 240);      /* solid card */
  --c-bubble: rgb(236, 232, 219);      /* chat bubble */
  --c-text: rgb(115, 42, 29);          /* primary brown */
  --c-text-2: rgba(115, 42, 29, 0.5);  /* faded brown */
  --c-text-3: rgba(115, 42, 29, 0.12); /* huge numerals */

  /* Brand accent */
  --c-accent: rgb(206, 72, 54);        /* signature red */
  --c-accent-soft: rgba(206, 72, 54, 0.06);
  --c-accent-soft-2: rgba(206, 72, 54, 0.1);
  --c-accent-soft-3: rgba(206, 72, 54, 0.05);

  /* Tan / cream / dark surfaces */
  --c-tan: rgba(209, 191, 160, 0.5);
  --c-tan-soft: rgba(209, 191, 160, 0.3);
  --c-tan-veil: rgba(209, 191, 160, 0.16);
  --c-cream: rgb(237, 231, 217);
  --c-cream-veil-08: rgba(237, 231, 217, 0.08);
  --c-cream-veil-16: rgba(237, 231, 217, 0.16);

  /* Status / divider */
  --c-green: rgb(125, 186, 68);
  --c-green-soft: rgba(125, 186, 68, 0.12);
  --c-green-soft-2: rgba(125, 186, 68, 0.2);
  --c-green-pulse: rgba(125, 186, 68, 0.55);
  --c-divider: rgb(236, 232, 219);

  /* Ink (texto marrom) em alphas — para bordas, divisores e tracks */
  --c-ink-soft-06: rgba(115, 42, 29, 0.06);
  --c-ink-soft-10: rgba(115, 42, 29, 0.1);
  --c-ink-soft-30: rgba(115, 42, 29, 0.3);

  /* Surfaces extras */
  --c-card-2-soft: rgba(246, 245, 240, 0.6);
  --c-photo-placeholder: rgb(233, 225, 209);
  --c-white: rgb(255, 255, 255);

  /* Shadows */
  --shadow-card: 0 12px 40px 0 rgba(115, 42, 29, 0.08);
  --shadow-card-2: 0 4px 32px 0 rgba(115, 42, 29, 0.08);

  /* Type families */
  --ff-display: 'Gyst', 'Times New Roman', serif;
  --ff-text: 'Manrope', system-ui, -apple-system, sans-serif;
}


/* ─── Base ──────────────────────────────────────────────────────────── */
* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--ff-text);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
html, body { overflow-x: hidden; }
.page { width: 100%; margin: 0 auto; position: relative; }

/* Tipografia: melhora o rag e ajuda a evitar "viúvas" (palavra sozinha na
   última linha). O glue determinístico das 2 últimas palavras é feito por
   assets/widow-buster.js (NBSP), que cobre mobile e desktop. */
p, li { text-wrap: pretty; }

/* Metodologia (h2-method): quando o painel recebe uma imagem real, ela
   preenche o quadro (sem fundo nem padding do placeholder de texto) e
   recebe o mesmo radius do box. */
.h2-method-panel-img:has(img) { padding: 0 !important; background: transparent !important; overflow: hidden; }
.h2-method-panel-img img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  border-radius: 20px 0 20px 0;
}

/* Hero (Negócios + Home): com <picture> a imagem preenche o quadro
   (sem fundo/borda/padding do placeholder). No mobile o frame acompanha a
   imagem retrato (750x1390). */
.h2-hero-img:has(picture) { padding: 0 !important; border: none !important; background: transparent !important; }
.h2-hero-img picture { display: block; width: 100%; height: 100%; }
@media (max-width: 640px) {
  .h2-hero-img:has(picture) { aspect-ratio: 750 / 1390 !important; }
}

/* Section 1 dos Negócios (sb2-func): imagens reais nos visuais.
   Desktop (sticky 520px) → cover; mobile (inline) → altura natural.
   Imagem preenche o frame → sem borda/veil de placeholder. */
.sb2-func-sticky:has(img) { border: none !important; background: transparent !important; width: 100% !important; max-width: 566px !important; aspect-ratio: 566 / 518 !important; height: auto !important; }
.sb2-func-visual:has(img) { padding: 0 !important; }
.sb2-func-visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sb2-func-visual-mobile:has(img) { padding: 0 !important; min-height: 0 !important; border: none !important; background: transparent !important; }
.sb2-func-visual-mobile img { width: 100%; height: auto; display: block; }


/* ─── Exit-intent modal (assets/exit-intent.js) ─────────────────────── */
#exit-intent { position: fixed; inset: 0; z-index: 1000; pointer-events: none; }
#exit-intent .exit-backdrop {
  position: absolute; inset: 0;
  background: rgba(115, 42, 29, 0.45);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
  opacity: 0; transition: opacity .28s ease;
}
#exit-intent .exit-modal {
  position: absolute; top: 50px; left: 50%;
  transform: translateX(-50%) translateY(-12px) scale(.98);
  width: 500px; max-width: calc(100vw - 40px);
  background: var(--c-bg);
  border-radius: 20px; overflow: hidden;
  box-shadow: 0 24px 70px -12px rgba(115, 42, 29, 0.35);
  opacity: 0; transition: opacity .3s ease, transform .35s cubic-bezier(.22, 1, .36, 1);
}
#exit-intent.is-open { pointer-events: auto; }
#exit-intent.is-open .exit-backdrop { opacity: 1; }
#exit-intent.is-open .exit-modal { opacity: 1; transform: translateX(-50%) translateY(0) scale(1); }
#exit-intent .exit-modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 34px; height: 34px; border-radius: 50%; border: none; cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255, 255, 255, 0.85); color: var(--c-text);
  box-shadow: 0 2px 10px rgba(115, 42, 29, 0.18);
  transition: background .2s ease, transform .2s ease;
}
#exit-intent .exit-modal-close:hover { background: #fff; transform: scale(1.05); }
/* Banner: largura total do modal; a altura segue o conteúdo (imagem) que for inserido. */
#exit-intent .exit-modal-banner {
  width: 100%; min-height: 380px;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 24px;
  background: var(--c-photo-placeholder);
  background-image: linear-gradient(135deg, var(--c-accent-soft-2) 0%, transparent 60%);
}
#exit-intent .exit-modal-banner > a { display: block; cursor: pointer; }
#exit-intent .exit-modal-banner img { width: 100%; height: auto; display: block; }
/* Com imagem real: full-bleed (sem padding/fundo do placeholder); cantos arredondam via overflow do .exit-modal */
#exit-intent .exit-modal-banner:has(img) { padding: 0; min-height: 0; background: transparent; background-image: none; }
#exit-intent .exit-modal-placeholder {
  font-family: var(--ff-text); font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em; color: rgba(115, 42, 29, 0.6); max-width: 320px;
}
@media (max-width: 640px) {
  #exit-intent .exit-modal { top: 20px; }
  #exit-intent .exit-modal-banner { min-height: 300px; }
}


/* ─── BlurFade scroll-in ────────────────────────────────────────────── */
.blurfade {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(18px);
  transition:
    opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}
.is-in {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  will-change: auto !important;
}
@media (prefers-reduced-motion: reduce) {
  .blurfade { opacity: 1; filter: none; transform: none; transition: none; }
}


/* ═════════════════════════════════════════════════════════════════════
   COMPONENTES GLOBAIS — nav e footer-bleed
   ─────────────────────────────────────────────────────────────────────
   .nav (topo) e .footer-bleed (rodapé) são componentes GLOBAIS do site.
   Toda página deve ter exatamente as mesmas estruturas — só hrefs e
   labels específicos da página podem variar.

   Estrutura canônica do .nav:
     <nav class="nav">
       <div class="nav-inner">
         <div class="nav-links">
           <div class="dropdown" data-state="closed">
             <button class="dropdown-trigger" aria-haspopup="menu" aria-expanded="false">
               Soluções <svg class="chev">…</svg>
             </button>
             <div class="dropdown-content" role="menu">
               <a class="dropdown-item" href="…">Salão de beleza</a>
               <a class="dropdown-item" href="…">Barbearia</a>
               <a class="dropdown-item" href="…">Estúdio de beleza</a>
             </div>
           </div>
           <a href="…">Que somos</a>
           <a href="…">Planos</a>
         </div>
         <button class="nav-burger" aria-label="Abrir menu"
                 aria-expanded="false" aria-controls="mobile-drawer">
           <svg>…3 lines…</svg>
         </button>
         <a class="nav-logo" href="home.html" aria-label="Easy Salon">
           <svg>…brand SVG…</svg>
         </a>
         <div class="nav-cta">
           <button class="btn btn-tan-soft" style="height:40px;width:100px;">Entrar</button>
           <button class="btn btn-primary"  style="height:40px;width:120px;">Teste grátis</button>
         </div>
       </div>
     </nav>

   Junto do nav, toda página deve ter:
     <div class="drawer-backdrop" data-drawer-backdrop hidden></div>
     <aside id="mobile-drawer" class="drawer" aria-hidden="true">…</aside>
   E o JS de drawer (clone do logo, abrir/fechar via burger/ESC/click).

   Estrutura canônica do .footer-bleed:
     <footer class="footer-bleed">
       <div class="footer-inner">
         <div class="footer-cta-grid">
           <div class="footer-cta-left">
             <span class="pill">Teste grátis por 5 dias</span>
             <h2>…CTA principal…</h2>
             <p>…subtitle…</p>
             <div class="btn-cta-row">
               <button class="btn btn-primary">Comece grátis</button>
               <button class="btn btn-outline-cream">Agendar demonstração</button>
             </div>
           </div>
           <div class="footer-cta-right">
             <div class="footer-bullet">…4 bullets check…</div>
           </div>
         </div>
         <div class="footer-divider"></div>
         <div class="footer-bottom">
           <a class="footer-logo" href="home.html"><svg>…brand SVG…</svg></a>
           <nav class="footer-nav">…7 links…</nav>
         </div>
         <div class="footer-copy-row">
           <div class="footer-copy">© Easy Salon · …</div>
           <div class="footer-social">…3 svg icons…</div>
         </div>
       </div>
     </footer>

   Para criar uma página nova: copie a estrutura HTML acima das duas
   páginas existentes (home.html ou salao-de-beleza.html) sem alterá-la.
   Edite apenas hrefs/labels específicos da página.

   ─────────────────────────────────────────────────────────────────────
   Comportamento JS canônico (copie inteiro de home.html para qualquer
   página nova):

   1. Dropdown de "Soluções" — abre no hover, fecha ao sair com 120ms de
      delay (forgiveness pra gap entre trigger e content), ESC e click
      fora também fecham. NÃO é click-to-toggle. Suporta múltiplos
      .dropdown na mesma página.

   2. Mobile drawer — burger abre, close-button/backdrop/ESC/click em
      drawer-link fecham. Clona o .nav-logo svg na drawer-head em
      versão menor (120×16). Trava o scroll do body quando aberto.

   3. Nav scroll shadow — adiciona/remove .is-scrolled em .nav baseado
      em window.scrollY > 8. Ativa a sombra/transparência definida em
      .nav.is-scrolled.

   4. BlurFade observer — IntersectionObserver que adiciona .is-in nos
      elementos listados (".nav-inner > *, .hero-top > *, …") quando
      entram em 10% do viewport. Respeita prefers-reduced-motion.
   ═════════════════════════════════════════════════════════════════════ */

/* ─── Header / Nav ──────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  height: 70px;
  background: var(--c-bg);
  border-bottom: 1px solid var(--c-divider);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
body.has-nav { padding-top: 70px; }
.nav.is-scrolled {
  box-shadow: var(--shadow-card-2);
  border-bottom-color: transparent;
}
.nav-inner {
  width: 1200px;
  height: 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-text);
  align-items: center;
}
.nav-links a {
  color: var(--c-text);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  transition: opacity 280ms ease-out;
}
.nav-links a:hover { opacity: 0.55; }
.nav-links a.active {
  background: rgba(206, 72, 54, 0.13);
  color: var(--c-accent);
  padding: 6px 8px;
  border-radius: 8px;
}
.nav-links a.active:hover { opacity: 1; }
.nav-logo { display: flex; align-items: center; justify-self: center; }
.nav-logo svg { display: block; height: 24px; width: auto; }
.nav-cta { display: flex; gap: 12px; justify-self: end; }


/* ─── Dropdown menu (shadcn/Radix style) ────────────────────────────── */
.dropdown { position: relative; }
.dropdown-trigger {
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--c-text);
  font-family: var(--ff-text);
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.dropdown-trigger:hover { opacity: 0.7; }
.dropdown-trigger .chev { transition: transform 0.2s ease; }
.dropdown[data-state="open"] .dropdown-trigger .chev { transform: rotate(180deg); }
.dropdown-content {
  position: absolute;
  top: calc(100% + 8px);
  left: -8px;
  min-width: 180px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  box-shadow:
    0 10px 38px -10px rgba(22, 23, 24, 0.18),
    0 10px 20px -15px rgba(22, 23, 24, 0.12);
  padding: 6px;
  z-index: 50;
  opacity: 0;
  transform: translateY(-4px) scale(0.97);
  pointer-events: none;
  transition: opacity 0.16s ease, transform 0.16s ease;
  transform-origin: top left;
}
.dropdown[data-state="open"] .dropdown-content {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--c-text);
  text-decoration: none;
  cursor: pointer;
  transition: background 0.12s ease;
  width: 100%;
  box-sizing: border-box;
}
.dropdown-item:hover { background: color-mix(in oklch, var(--c-cream) 50%, transparent); opacity: 1 !important; }
.dropdown-item .ico {
  flex: 0 0 auto;
  width: 28px; height: 28px;
  border-radius: 6px;
  background: var(--c-cream);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--c-accent);
  margin-top: 1px;
}
.dropdown-item .ico svg { width: 16px; height: 16px; }
.dropdown-item .text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.dropdown-item .text .title {
  font-family: var(--ff-text);
  font-weight: 600;
  font-size: 13px;
  line-height: 1.2;
  color: var(--c-text);
}
.dropdown-item .text .desc {
  font-family: var(--ff-text);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.35;
  color: var(--c-text-2);
}
.dropdown-separator { height: 1px; background: rgba(0, 0, 0, 0.06); margin: 6px 4px; }


/* ─── Buttons ───────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  font-family: var(--ff-text);
  font-weight: 700;
  font-size: 13px;
  line-height: 1;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              background-color 0.45s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-1px); }

/* Primary — glow + gradient overlay on hover */
.btn-primary {
  background-color: var(--c-accent);
  color: rgb(244, 241, 234);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              background-color 0.45s ease;
}
.btn-primary:hover { transform: translateY(-3px); }
.btn-primary::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: radial-gradient(closest-side, rgba(206, 72, 54, 0.55), transparent 70%);
  filter: blur(14px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 35%, transparent 70%),
    linear-gradient(180deg, rgb(214, 84, 64) 0%, rgb(186, 60, 44) 100%);
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
  border-radius: inherit;
  z-index: -1;
}
.btn-primary:hover {
  box-shadow:
    0 22px 36px -12px rgba(206, 72, 54, 0.55),
    0 14px 22px -10px rgba(206, 72, 54, 0.4);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover::after { opacity: 1; }
.btn-primary:active { transform: translateY(0); }

.btn-tan { background: var(--c-tan); color: var(--c-text); }
.btn-tan-soft { background: var(--c-tan-soft); color: var(--c-text); }
.btn-outline { background: transparent; border: 1px solid var(--c-accent); color: var(--c-accent); }
.btn-outline-dark { background: transparent; border: 1px solid var(--c-text); color: var(--c-text); }
.btn-outline-cream { background: transparent; border: 1px solid var(--c-cream); color: var(--c-cream); }
.btn-cta-row { display: flex; gap: 12px; justify-content: center; }
/* Genérico para grupos de CTAs em qualquer contexto (sol-hero, team-text, footer).
   Mobile @media sobrescreve para column + gap 20px sem precisar de !important
   se não houver inline style competindo. */
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }


/* ─── Pills ─────────────────────────────────────────────────────────── */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 31px;
  padding: 0 12px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}
.pill-accent {
  background: var(--c-accent-soft);
  color: var(--c-accent);
  box-shadow: inset 0 0 0 1px var(--c-accent-soft-2);
}
.pill-green { background: var(--c-green-soft); color: var(--c-green); }
.pill-outline { background: transparent; border: 1px solid var(--c-text); color: var(--c-text); }
.pill-cream {
  background: var(--c-cream-veil-08);
  border: 0;
  box-shadow: inset 0 0 0 1px var(--c-cream-veil-16);
  color: var(--c-cream);
}

/* Animated rotating border (Attio-style) */
.pill-glow {
  position: relative;
  isolation: isolate;
  --pill-glow-color: 206, 72, 54;
}
.pill-glow.pill-glow-cream { --pill-glow-color: 237, 231, 217; }
.pill-glow::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    transparent 200deg,
    rgba(var(--pill-glow-color), 0.0) 220deg,
    rgba(var(--pill-glow-color), 0.95) 350deg,
    rgba(var(--pill-glow-color), 0.0) 360deg
  );
  -webkit-mask:
    linear-gradient(#000, #000) content-box,
    linear-gradient(#000, #000);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  animation: pill-glow-spin 3.2s linear infinite;
  z-index: 1;
}
@property --angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}
@keyframes pill-glow-spin { to { --angle: 360deg; } }


/* ─── Cycling word (per-letter blur) ────────────────────────────────── */
.cycle-word { color: var(--c-accent); display: inline-block; }
.cycle-word__inner { display: inline-block; white-space: nowrap; }
.cycle-word__char {
  display: inline-block;
  will-change: filter, opacity, transform;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(6px);
  animation: cw-blur-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: var(--cw-delay, 0s);
}
.cycle-word__inner.is-out .cycle-word__char {
  animation: cw-blur-out 0.35s cubic-bezier(0.4, 0, 1, 1) forwards;
  animation-delay: var(--cw-delay-out, 0s);
}
@keyframes cw-blur-in {
  0%   { opacity: 0; filter: blur(10px); transform: translateY(6px); }
  100% { opacity: 1; filter: blur(0);    transform: translateY(0); }
}
@keyframes cw-blur-out {
  0%   { opacity: 1; filter: blur(0);    transform: translateY(0); }
  100% { opacity: 0; filter: blur(10px); transform: translateY(-6px); }
}


/* ─── Utilitários de quebra responsiva ──────────────────────────────── */
br.br-m { display: none; }
br.br-d { display: inline; }
@media (max-width: 640px) {
  br.br-m { display: inline; }
  br.br-d { display: none; }
}


/* ─── Footer (dark bleed) ───────────────────────────────────────────── */
.footer-bleed {
  margin-top: 50px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  background: var(--c-text);
  color: var(--c-cream);
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}
.footer-inner {
  position: relative;
  z-index: 1;
  width: 1200px;
  margin: 0 auto;
  padding: 0;
}
.footer-cta-grid {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 100px;
  padding-bottom: 50px;
}
.footer-cta-left h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--c-cream);
  margin: 20px 0 20px;
}
.footer-cta-left p {
  font-family: var(--ff-text);
  font-size: 14px;
  line-height: 24px;
  color: var(--c-cream);
  margin: 0 0 32px;
  max-width: 500px;
}
.footer-cta-right {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 20px;
  text-align: right;
  padding-left: 150px;
}
.footer-cta-right .footer-bullet { text-align: right; }
.footer-bullet {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--c-cream);
}
.footer-bullet .dot {
  width: 16px; height: 16px;
  flex: 0 0 auto;
  border-radius: 100px;
  background: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-divider {
  height: 1px;
  background: rgba(239, 234, 221, 0.16);
  margin: 0 0 50px;
}
.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 40px;
  color: var(--c-cream);
}
.footer-copy-row {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--c-cream);
  letter-spacing: 0.04em;
}
.footer-logo svg { display: block; height: 24px; width: auto; color: var(--c-cream); }
.footer-logo svg path { fill: currentColor; }
.footer-nav {
  display: flex;
  gap: 24px;
  justify-content: flex-end;
  font-size: 13px;
  color: var(--c-cream);
}
.footer-nav a { color: var(--c-cream); text-decoration: none; transition: opacity 280ms ease-out; }
.footer-nav a:hover { opacity: 0.55; }
.footer-social { display: flex; gap: 8px; justify-self: end; align-items: center; }
.footer-social .ico { width: 24px; height: 24px; color: var(--c-cream); }
.footer-copy { font-size: 12px; color: var(--c-cream); opacity: 0.8; }


/* ─── Mobile nav: hamburger + drawer ────────────────────────────────── */
.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  width: 40px; height: 40px;
  border-radius: 10px;
  color: var(--c-text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease;
}
.nav-burger:hover { background: var(--c-tan-veil); }
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(115, 42, 29, 0.4);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 90;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}
.drawer-backdrop.is-visible { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100%;
  width: min(86vw, 340px);
  background: var(--c-bg);
  color: var(--c-text);
  z-index: 100;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -16px 0 40px -12px rgba(115, 42, 29, 0.18);
  padding: 20px 22px 28px;
  gap: 24px;
}
.drawer.is-open { transform: translateX(0); }
.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-divider);
}
/* Drawer-logo: quando vier como texto (ex: "Menu"), usa Gyst — sem isso herda Manrope.
   Quando vier como SVG (logo Easy Salon clonado), o SVG abaixo cuida. */
.drawer-logo {
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 18px;
  color: var(--c-text);
}
.drawer-logo svg { display: block; height: 16px; width: auto; }
.drawer-close {
  background: transparent;
  border: 0;
  width: 36px; height: 36px;
  border-radius: 10px;
  color: var(--c-text);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background 0.2s ease;
}
.drawer-close:hover { background: var(--c-tan-veil); }
.drawer-nav { display: flex; flex-direction: column; gap: 6px; flex: 1; }
.drawer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--c-text);
  text-decoration: none;
  transition: color 0.15s ease;
}
.drawer-link:hover { color: var(--c-accent); }
.drawer-sep { height: 12px; border: 0; }
.drawer-cta { display: flex; flex-direction: column; gap: 10px; }


/* ─── Inputs / forms ────────────────────────────────────────────────── */
.ds-input {
  display: block;
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid var(--c-divider);
  background: var(--c-card-2);
  font-family: var(--ff-text);
  font-size: 14px;
  color: var(--c-text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}
.ds-input:focus {
  outline: 0;
  border-color: var(--c-accent);
  box-shadow: 0 0 0 3px var(--c-accent-soft-2);
}
.ds-input::placeholder { color: var(--c-text-2); }
.ds-textarea {
  min-height: 120px;
  height: auto;
  padding: 12px 14px;
  resize: vertical;
}
.ds-label {
  display: inline-block;
  font-family: var(--ff-text);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--c-text-2);
  margin-bottom: 6px;
}


/* ═════════════════════════════════════════════════════════════════════
   Responsive contract (canonical baseline)
   ─────────────────────────────────────────────────────────────────────
   Toda página deve seguir estas regras:

   • Breakpoint mobile = 640px. Não use outros valores em @media; o
     validador (validate_components.py) sinaliza divergências.
   • Containers de seção: largura máxima 1200px, centralizados via
     margin auto. Use a classe utilitária .ds-section abaixo, ou
     replique o padrão (width 1200px / max-width calc(100% - 48px) /
     margin-inline auto). NUNCA use margin com pixels fixos nas laterais
     (ex.: margin: 0 472.5px ...) — isso quebra a centralização.
   • Mobile (≤ 640px): seções caem para 16px de margem lateral, hero
     deve ser texto centralizado, botões largos.
   ═════════════════════════════════════════════════════════════════════ */

/* Container utilitário — use em <section class="ds-section">…</section> */
.ds-section {
  width: 1200px;
  max-width: calc(100% - 48px);
  margin-left: auto;
  margin-right: auto;
}

/* Hero centralizado no mobile (padrão da home) */
.ds-hero-mobile-center {
  /* desktop: sem efeito; mobile: centraliza conteúdo abaixo */
}


/* ─── Chat (demo card on home + soluções) ───────────────────────────── */
.chat {
  position: relative;
  height: 379px;
  background: var(--c-card-2);
  border-radius: 12px;
  box-shadow: var(--shadow-card-2);
  padding: 24px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.chat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--c-ink-soft-10);
  margin-bottom: 24px;
}
.chat-avatar {
  width: 32px;
  height: 32px;
  border-radius: 100px;
  background: var(--c-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-bg);
}
.chat-id { line-height: 1.2; }
.chat-id .name {
  font-weight: 700;
  font-size: 13px;
  color: var(--c-text);
}
.chat-id .status {
  font-size: 10px;
  color: var(--c-text-2);
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--c-green-soft-2);
  display: inline-block;
  position: relative;
  animation: status-pulse-ring 2s ease-out infinite;
}
.status-dot::after {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 100px;
  background: var(--c-green);
  animation: status-pulse-core 2s ease-in-out infinite;
}
@keyframes status-pulse-ring {
  0%   { box-shadow: 0 0 0 0 var(--c-green-pulse); }
  70%  { box-shadow: 0 0 0 8px transparent; }
  100% { box-shadow: 0 0 0 0 transparent; }
}
@keyframes status-pulse-core {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.7; }
}

/* ─── Team text block ───────────────────────────────────────────────── */
.team-text {
  padding: 20px 14px 0 14px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team-text .pill-row { display: flex; }
.team-text h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--c-text);
  margin: 0;
}
.team-text .quote {
  font-family: var(--ff-display);
  font-size: 18px;
  line-height: 28px;
  color: var(--c-text);
  font-style: italic;
  margin: 0;
}
.team-text .quote::before { content: '\201C'; color: var(--c-accent); font-size: 30px; vertical-align: -6px; }
.team-text .quote::after  { content: '\201D'; color: var(--c-accent); font-size: 30px; vertical-align: -10px; }
.team-text .mission {
  font-family: var(--ff-text);
  font-size: 14px;
  line-height: 24px;
  color: var(--c-text);
  margin: 0;
}
.team-text .mission strong { font-weight: 700; }


/* ─── Mobile breakpoint (compartilhado) ─────────────────────────────── */
@media (max-width: 640px) {
  .nav { height: 60px; }
  body.has-nav { padding-top: 60px; }
  .nav-inner {
    width: 100%;
    padding: 0 18px;
    grid-template-columns: 1fr auto;
    gap: 0;
    height: 60px;
  }
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-logo { justify-self: start; order: 0; }
  .nav-logo svg { height: 20px; }
  .nav-burger { display: inline-flex; justify-self: end; order: 2; }

  .btn { font-size: 14px; height: 46px; border-radius: 12px; padding: 0 18px; }
  .btn-cta-row { flex-direction: column; width: 100%; gap: 20px; }
  .btn-cta-row .btn { width: 100% !important; }
  .pill { font-size: 11px; height: 30px; }

  .footer-bleed { margin-top: 50px; padding: 0; }
  .footer-inner { width: 100%; padding: 20px 22px; }
  .footer-cta-grid {
    grid-template-columns: 1fr;
    gap: 36px !important;
    padding-bottom: 36px !important;
  }
  .footer-cta-left h2 {
    font-size: 28px !important;
    line-height: 1.1 !important;
    margin: 20px 0 20px !important;
  }
  .footer-cta-left h2 br { display: none; }
  .footer-cta-left p { font-size: 14px; line-height: 22px; max-width: 100%; }
  .footer-cta-left .btn-cta-row .btn { width: 100% !important; }
  .footer-cta-right {
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    gap: 14px !important;
    align-self: stretch !important;
  }
  .footer-bullet { font-size: 13.5px; text-align: left !important; }
  .footer-divider { margin: 0 0 36px !important; }
  .footer-bottom {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    align-items: flex-start !important;
  }
  .footer-logo { justify-content: flex-start; }
  .footer-logo svg { height: 20px; }
  .footer-nav {
    justify-content: flex-start !important;
    flex-wrap: wrap;
    gap: 14px 18px;
    font-size: 13px !important;
    text-align: left !important;
  }
  .footer-copy-row {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 16px;
    margin-top: 24px !important;
  }
  .footer-copy { font-size: 11.5px; line-height: 1.5; width: 100%; }
  .footer-social { justify-self: flex-start; }

  /* Chat / confirm / team — responsive */
  .team-text { padding: 8px 6px 12px; gap: 16px; }
  .team-text h2 { font-size: 30px !important; line-height: 1.1 !important; }
  .team-text h2 br { display: none; }
  .team-text .quote, .team-text .mission { font-size: 14px; line-height: 22px; }

  /* Container utilitário — mobile: cai para 16px de margem lateral */
  .ds-section {
    width: auto;
    max-width: none;
    margin-left: 16px;
    margin-right: 16px;
  }

  /* Hero centralizado no mobile (use no container do hero) */
  .ds-hero-mobile-center {
    text-align: center;
    align-items: center;
  }
  .ds-hero-mobile-center > * { margin-left: auto !important; margin-right: auto !important; }
}


/* ═════════════════════════════════════════════════════════════════════
   Páginas: Salão de Beleza
   ─────────────────────────────────────────────────────────────────────
   Componentes específicos da página /salao-de-beleza.html. Mantidos
   neste arquivo (e não inline na página) para que a herança fique
   centralizada no design-system. Outras soluções (barbearia, estúdio)
   podem reusar essas classes ou criar suas próprias seções aqui.
   ═════════════════════════════════════════════════════════════════════ */

/* BlurFade — seletores específicos da página Salão */
.nav-inner > *,
.hero-grid > *,
.step-row > *,
.pq-grid > *,
.team-block > *,
.faq-list > *,
.footer-cta-left > *,
.footer-cta-right > *,
.footer-bottom > * {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(18px);
  transition:
    opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}
@media (prefers-reduced-motion: reduce) {
  .nav-inner > *,
  .hero-grid > *,
  .step-row > *,
  .pq-grid > *,
  .team-block > *,
  .faq-list > *,
  .footer-cta-left > *,
  .footer-cta-right > *,
  .footer-bottom > * {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}




/* ─── 5 passos (.steps-section) ─────────────────────────────────────── */
.steps-section {
  width: 1200px;
  max-width: calc(100% - 48px);
  margin: 0 auto 100px;
  background: var(--c-card);
  border-radius: 12px;
  padding: 80px 80px;
  position: relative;
}
.steps-section h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  color: var(--c-text);
  text-align: center;
  margin: 0 0 24px;
}
.steps-section h2 em { font-style: normal; color: var(--c-accent); }
.steps-section .lead {
  font-size: 18px;
  line-height: 30px;
  color: var(--c-text);
  text-align: center;
  margin: 0 auto 60px;
  max-width: 660px;
  font-weight: 500;
}
.step-row {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr 370px;
  gap: 24px;
  align-items: start;
  padding: 50px 0;
}
.step-row:last-of-type { padding-bottom: 50px; }
.step-row .dot { display: none; }
.step-row .num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  color: var(--c-accent);
  margin: 0;
}
.step-row .body h3 {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 40px;
  color: var(--c-accent);
  margin: 0 0 16px !important;
}
/* /planos — step-cat alinhado ao número, h3 como subtítulo da lista */
[data-screen-label="Planos"] .step-row .body p.step-cat {
  font-size: 15px;
  font-weight: 700;
  line-height: 40px;
  margin: 0;
}
[data-screen-label="Planos"] .step-row .body h3 {
  font-family: var(--ff-text);
  color: #732A1D;
  line-height: 1.4;
  margin: 14px 0 12px !important;
}
.step-row .body p {
  font-size: 14px;
  line-height: 24px;
  color: var(--c-text);
  margin: 0 0 16px;
  max-width: 420px;
  white-space: pre-line;
}
.step-row .body p.step-cat {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.2;
  color: var(--c-accent);
  margin: 0 0 4px;
  max-width: none;
  letter-spacing: 0;
}
.step-row .body ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-row .body li {
  font-size: 14px;
  line-height: 22px;
  color: var(--c-text);
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.step-row .body li::before {
  content: "";
  flex: 0 0 auto;
  width: 16px; height: 16px;
  margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none'><circle cx='8' cy='8' r='7' stroke='%23CE4836' stroke-width='1.5'/><path d='M5 8.5 L7 10.5 L11 6' stroke='%23CE4836' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 16px 16px;
}
.step-row .photo {
  width: 370px;
  height: 301px;
  border-radius: 8px;
  background: var(--c-photo-placeholder) center/cover no-repeat;
}
.step-row.reverse {
  grid-template-columns: 370px 1fr 40px;
  direction: rtl;
}
.step-row.reverse > * { direction: ltr; }

/* Timeline progress line — vertical line that fills with scroll */
.step-row .tl-seg {
  position: absolute;
  /* .step-row tem padding: 20px 0; o número começa em y=50px, ~40px de altura.
     Linha começa 12px abaixo do número (y = 50 + 40 + 12 = 102px).
     Termina 12px acima do número da próxima row (próxima row começa, e seu
     número também tem padding-top:50px → bottom precisa ser -(50 - 12) = -38px). */
  top: 102px;
  bottom: -38px;
  width: 2px;
  left: 19px; /* centro da coluna de 40px do número */
  pointer-events: none;
}
.step-row .tl-seg::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: var(--tl-progress, 0px);
  background: linear-gradient(
    to bottom,
    transparent 0%,
    var(--c-accent) 50%,
    transparent 100%
  );
  border-radius: 2px;
  transition: height 80ms linear;
}
.step-row.tl-last .tl-seg { display: none; }

/* CTAs do step (variantes desktop + mobile) */
.steps-cta {
  display: flex;
  gap: 12px;
  justify-content: flex-start;
  margin-top: 24px;
  flex-wrap: wrap;
}
.steps-cta-mobile { display: none; }


/* ─── Por que escolher (.pq-section) ────────────────────────────────── */
.pq-section {
  width: 1200px;
  max-width: calc(100% - 48px);
  margin: 0 auto 80px;
  padding: 0;
}
.pq-section h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.1;
  text-align: center;
  color: var(--c-text);
  margin: 0 0 50px;
}
.pq-section h2 em { font-style: normal; color: var(--c-accent); }
.pq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pq-card {
  background: var(--c-card);
  border: 1px solid var(--c-ink-soft-06);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}
.pq-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-card-2); }
.pq-card .ico {
  width: 44px; height: 44px;
  border-radius: 100px;
  background: var(--c-accent-soft);
  color: var(--c-accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pq-card p {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.3;
  color: var(--c-text);
  margin: 0;
  white-space: pre-line;
}


/* ─── Por trás da Easy (.team-section) ──────────────────────────────── */
.team-section {
  width: 1200px;
  max-width: calc(100% - 48px);
  margin: 0 auto 100px;
  background: var(--c-card);
  border-radius: 12px;
  padding: 30px;
}
.team-block {
  display: grid;
  grid-template-columns: 444px 1fr;
  gap: 30px;
  align-items: center;
}
.team-photo {
  width: 444px;
  height: 347px;
  border-radius: 8px;
  background: url('/assets/equipe.png') center/cover no-repeat;
}
/* .team-text controla espaçamento via gap (já definido em .team-text na seção
   "Team text block" deste mesmo arquivo). Filhos não usam margin-bottom. */
.team-text .quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: var(--c-text);
  margin: 12px 0;
}
.team-text .mission {
  font-size: 14px;
  line-height: 24px;
  color: var(--c-text);
  margin: 0 0 28px;
}
.team-text .cta-row { display: flex; gap: 12px; }


/* ─── FAQ (.faq-section) ────────────────────────────────────────────── */
.faq-section {
  width: 1200px;
  max-width: calc(100% - 48px);
  margin: 80px auto 100px;
}
.faq-divider {
  width: 1200px;
  max-width: calc(100% - 48px);
  margin: 0 auto 60px;
  border-top: 1px solid var(--c-ink-soft-10);
}
.faq-section h2 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1;
  text-align: center;
  color: var(--c-text);
  margin: 0 0 50px;
}
.faq-section h2 em { font-style: normal; color: var(--c-accent); }
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--c-card);
  border: 1px solid var(--c-ink-soft-06);
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .35s ease;
}
.faq-item[open] { box-shadow: var(--shadow-card-2); }
.faq-item[open] summary { font-weight: 600; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 24px;
  font-size: 14px;
  line-height: 1.4;
  color: var(--c-text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
/* Marker: 4 pétalas em "+" que rotaciona 45° (X) quando aberto */
.faq-item .marker {
  flex: 0 0 auto;
  width: 17px; height: 17px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='17' height='17' viewBox='0 0 17 17' fill='none'><path d='M8.5168 9.52704C10.2405 11.7152 10.2743 14.7786 8.5168 16.9331V17L8.4832 16.9665C6.75976 14.7785 6.79339 11.7151 8.5168 9.52704ZM0 8.51673C2.1629 6.7663 5.2723 6.7665 7.4353 8.51673C5.27229 10.2672 2.19678 10.2336 0 8.51673ZM9.5647 8.48327C11.7277 6.73279 14.837 6.73289 17 8.48327C14.837 10.2337 11.7277 10.2338 9.5647 8.48327ZM8.4832 0C10.2069 2.18816 10.2405 5.25133 8.5168 7.43949L8.4832 7.40603C6.72588 5.25157 6.75965 2.18811 8.4832 0Z' fill='%23CE4836'/></svg>");
  transform: rotate(0deg);
  transition: transform .35s cubic-bezier(.22, .61, .36, 1);
}
.faq-item[open] .marker { transform: rotate(45deg); }
.faq-item .answer-wrap {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.22, .61, .36, 1);
}
.faq-item[open] .answer-wrap { grid-template-rows: 1fr; }
.faq-item .answer-inner { overflow: hidden; min-height: 0; }
.faq-item .answer {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 24px;
  color: var(--c-text);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity .25s ease, transform .35s cubic-bezier(.22, .61, .36, 1);
}
.faq-item[open] .answer {
  opacity: 1;
  transform: translateY(0);
  transition-delay: .08s;
}
/* Durante o fechamento, mantém o open visualmente até a transição terminar */
.faq-item.closing .answer-wrap { grid-template-rows: 0fr; }
.faq-item.closing .answer { opacity: 0; transform: translateY(-4px); transition-delay: 0s; }


/* ─── Salão de Beleza — Mobile (≤ 640px) ────────────────────────────── */
@media (max-width: 640px) {
  /* Nav --------------------------------------------------------- */
  .page .nav-inner {
    width: 100%;
    padding: 0 18px;
    grid-template-columns: 1fr auto;
    gap: 0;
    height: 60px;
    justify-content: space-between;
  }
  .page .nav-links { display: none; }
  .page .nav-cta { display: none; }
  .page .nav-logo { justify-self: start; order: 0; position: static; transform: none; }
  .page .nav-logo svg { height: 20px; }

  /* Buttons & pills -------------------------------------------- */
  .page .btn { font-size: 14px; height: 46px; border-radius: 12px; padding: 0 18px; }
  .cta-row { flex-direction: column; width: 100%; gap: 20px; }
  .cta-row .btn { width: 100% !important; }
  .page .pill { font-size: 11px; height: 30px; }

  /* 5 passos ---------------------------------------------------- */
  /* Mobile: max-width: none libera o width auto (padrão da home — sem clamp do desktop) */
  .steps-section {
    padding: 40px 20px 20px !important;
    margin: 0 16px 50px !important;
    width: auto !important;
    max-width: none !important;
  }
  .steps-section h2 { font-size: 30px; line-height: 1.1; }
  .steps-section .lead { font-size: 14px; line-height: 22px; margin-bottom: 24px; }
  .step-row {
    grid-template-columns: 40px 1fr !important;
    gap: 16px;
    padding: 32px 0;
  }
  .step-row.tl-last { padding-bottom: 0; }
  .step-row .dot { display: none; }
  /* Linha vertical (.tl-seg): visível no mobile com fill conforme scroll.
     Recalculada para o padding mobile 32px (vs 50px desktop):
     top = 32 + 40 (num) + 12 (gap) = 84
     bottom = -(32 - 12) = -20 */
  .step-row .tl-seg { top: 84px; bottom: -20px; }
  .step-row.reverse {
    grid-template-columns: 40px 1fr !important;
    direction: ltr;
  }
  /* Mobile: num em col 1 / body em col 2 (linha 1) e photo abaixo do body (linha 2),
     independente da ordem do HTML (cobre rows .reverse) */
  .step-row .num { grid-column: 1; grid-row: 1; }
  .step-row .body { grid-column: 2; grid-row: 1; }
  .step-row .photo { grid-column: 2; grid-row: 2; width: 100%; height: 200px; margin-top: 16px; }
  /* Mobile: esconde a CTA-desktop (dentro do body) e mostra a CTA-mobile abaixo do photo */
  .step-row .steps-cta-desktop { display: none; }
  /* Mobile: CTAs ocupam 100% do .step-row (span nas 2 colunas, não só col 2) */
  .step-row .steps-cta-mobile {
    display: flex;
    grid-column: 1 / -1;
    grid-row: 3;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    margin-top: 20px;
  }
  .step-row .steps-cta-mobile .btn { width: 100% !important; }
  .step-row .body p { white-space: normal; }

  /* Por que escolher ------------------------------------------- */
  /* Mobile: padrão da home — width 100% + padding 0 16px (não-card) */
  .pq-section {
    padding: 0 16px !important;
    margin: 0 0 20px !important;
    width: 100% !important;
    max-width: none !important;
  }
  .pq-section h2 { font-size: 30px; line-height: 1.1; }
  .pq-grid { grid-template-columns: 1fr; gap: 20px; }
  /* Cards alinhados ao padrão da home (.veja-card mobile: padding 16px / gap 18px) */
  .pq-card { padding: 16px; gap: 18px; }
  .pq-card .ico { margin-bottom: 14px; }
  .pq-card p { font-size: 16px; line-height: 22px; }

  /* Por trás da Easy ------------------------------------------- */
  /* Mobile: max-width: none libera o width auto */
  .team-section {
    padding: 16px !important;
    margin: 24px 16px 24px !important;
    width: auto !important;
    max-width: none !important;
  }
  .team-block { grid-template-columns: 1fr; gap: 20px; }
  .team-photo { width: 100%; height: 240px; }
  .team-text .quote { font-size: 14px !important; line-height: 22px !important; }
  .team-text .quote br { display: none; }

  /* FAQ --------------------------------------------------------- */
  .faq-section {
    margin: 0 16px 60px !important;
    width: auto !important;
    max-width: none;
  }
  .faq-section h2 { font-size: 30px; line-height: 1.1; }
  /* Cards FAQ: padding compacto, alinhado ao ritmo dos cards mobile */
  .faq-item summary { padding: 16px 18px; font-size: 14px; }
  .faq-item .answer { padding: 0 18px 16px; font-size: 14px; line-height: 22px; }

  /* Footer overrides específicos do Salão (não-master) */
  .footer-cta-left .cta-row .btn { width: 100% !important; }
  .page .footer-bullet {
    font-size: 13.5px;
    justify-content: flex-start !important;
    text-align: left !important;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   Páginas: Barbearia
   ─────────────────────────────────────────────────────────────────
   Componentes específicos da página /barbearia.html.
   ═════════════════════════════════════════════════════════════════════ */

[data-screen-label="Solução · Barbearia"] .pq-grid {
  grid-template-columns: repeat(5, 1fr);
}

[data-screen-label="Solução · Estúdio de Beleza"] .pq-grid {
  grid-template-columns: repeat(5, 1fr);
}

/* ═══════════════════════════════════════════════════════════════════
   Páginas: Planos
   ─────────────────────────────────────────────────────────────────
   Componentes específicos da página /planos. Inclui:
   - .plans-hero        — hero text-only (sem chat)
   - .pricing-section   — wrapper do bloco "Escolha seu plano"
   - .pricing-grid      — grid 3 colunas de .pricing-card
   - .pricing-card      — card individual (com variantes .featured / .soon)
   - .compare-section   — wrapper do comparador
   - .compare-table     — tabela de features × planos
   ═══════════════════════════════════════════════════════════════════ */

/* ─── Hero Planos (text-only, centralizado) ─── */
.plans-hero {
  width: 100%;
  margin: 0;
  padding: 60px 24px 60px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  background: var(--c-tan-veil);
}
.plans-hero h1 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin: 0 0 24px;
  max-width: 800px;
}
.plans-hero h1 em {
  font-style: normal;
  color: var(--c-accent);
}
.plans-hero .plans-hero-sub {
  font-family: var(--ff-text);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-text);
  margin: 0 0 32px;
  max-width: 560px;
}
.plans-hero .cta-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin: 0 0 28px;
}
.plans-hero-bullets {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-family: var(--ff-text);
  font-size: 13.5px;
  color: var(--c-text);
}
.plans-hero-bullets .b {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.plans-hero-bullets .b .dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: var(--c-accent);
}

/* ─── Pricing Section ─── */
.pricing-section {
  width: 1200px;
  max-width: calc(100% - 48px);
  margin: 0 auto 30px;
  padding: 50px 0 0;
  text-align: center;
}
.pricing-section .pricing-title {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--c-text);
  margin: 0 0 65px;
}
.pricing-section .pricing-title em {
  font-style: normal;
  color: var(--c-accent);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
  margin: 32px 0 0;
}
.pricing-card {
  position: relative;
  background: var(--c-card-2);
  border-radius: 16px;
  box-shadow: none;
  padding: 30px 20px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  border: 1.5px solid transparent;
  transition: transform 280ms ease-out, box-shadow 280ms ease-out;
}
.pricing-card.featured {
  border-color: transparent;
  box-shadow: 0 0 0 6px rgba(206, 72, 54, 0.05);
}
.pricing-card .pricing-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--c-accent);
  color: #fff;
  font-family: var(--ff-text);
  font-weight: 600;
  font-size: 12px;
  line-height: 1;
  padding: 8px 14px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.pricing-card .pricing-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--c-text);
  margin: 0 0 20px;
}
.pricing-card .pricing-desc {
  font-family: var(--ff-text);
  font-weight: 400;
  font-size: 14.5px;
  line-height: 1.5;
  color: var(--c-text);
  margin: 0 0 28px;
  max-width: 320px;
  min-height: 66px;
}
.pricing-card .hero-divider {
  margin: 0 0 28px;
  gap: 4px;
}
.pricing-card .hero-divider .line { width: 40px; }
.pricing-card .pricing-price {
  margin: 0 0 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.pricing-card .pricing-price .num {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  color: var(--c-accent);
  margin: 0 0 8px;
}
.pricing-card .pricing-price-note {
  font-family: var(--ff-text);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-text);
  margin: 0 0 4px;
}
.pricing-card .pricing-annual-note {
  font-family: var(--ff-text);
  font-size: 12px;
  line-height: 1.4;
  color: var(--c-accent);
  margin: 0 0 24px;
  max-width: 320px;
}
.pricing-card .pricing-cta {
  margin-top: auto;
  width: 100%;
}
.pricing-card:not(.featured) .pricing-price {
  flex: 1;
  justify-content: center;
}
.pricing-card.soon .pricing-cta {
  background: var(--c-tan-soft) !important;
  color: var(--c-text-2) !important;
  cursor: not-allowed;
  pointer-events: none;
}

/* ─── Compare Section (tabela de features) ─── */
.compare-section {
  width: 1200px;
  max-width: calc(100% - 48px);
  margin: 0 auto 30px;
  padding: 0;
}
.compare-table-wrap {
  width: 100%;
  overflow-x: auto;
  background: var(--c-card-2);
  border-radius: 16px;
  box-shadow: none;
  padding: 12px 0;
}
.compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 12px 0;
  font-family: var(--ff-text);
  font-size: 14.5px;
  color: var(--c-text);
  min-width: 720px;
  table-layout: fixed;
}
.compare-table thead th:not(:first-child),
.compare-table tbody td:not(:first-child),
.compare-table tfoot td:not(:first-child) {
  width: 262px;
}
.compare-table thead th {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--c-text);
  padding: 22px 18px;
  text-align: center;
  vertical-align: middle;
}
.compare-table thead th:first-child {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--c-accent);
  text-align: left;
}
.compare-table thead th:not(:first-child) {
  background: var(--c-tan-veil);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}
.compare-table tbody td {
  padding: 16px 18px;
  vertical-align: middle;
  font-size: 12px;
  line-height: 1.4;
}
.compare-table tbody td:first-child {
  text-align: left;
  font-weight: 400;
  color: var(--c-text);
}
.compare-table tbody td:first-child strong {
  font-weight: 700;
}
.compare-table tbody td:not(:first-child) {
  text-align: center;
  background: var(--c-tan-veil);
}
.compare-table tfoot td {
  padding: 24px 20px 20px;
  text-align: center;
  vertical-align: middle;
}
.compare-table tfoot td:first-child {
  text-align: left;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 18px;
  color: var(--c-accent);
}
.compare-table tfoot td:not(:first-child) {
  background: var(--c-tan-veil);
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.compare-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--c-accent);
  color: #fff;
}
.compare-check svg {
  width: 13px;
  height: 13px;
  display: block;
}
.compare-empty {
  display: inline-block;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(115, 42, 29, 0.2);
  border-radius: 999px;
  box-sizing: border-box;
  vertical-align: middle;
}
.compare-table tfoot .btn {
  width: 100%;
  max-width: 220px;
  height: auto;
  min-height: 40px;
  padding: 12px;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

/* Troca de texto do CTA "Iniciar teste grátis por 5 dias" → "Teste grátis por 5 dias" no mobile */
.cta-label-mobile { display: none; }
.cta-label-desktop { display: inline; }
@media (max-width: 640px) {
  .cta-label-desktop { display: none; }
  .cta-label-mobile { display: inline; }
}

/* ─── Mobile (planos) ─── */
@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pricing-card.featured {
    order: -1; /* destaque vai pro topo no mobile */
  }

  /* Compare table — em viewports menores que 900px (tablet+mobile),
     usa scroll horizontal com colunas largas o suficiente para o botão CTA
     ficar em 1 linha. */
  .compare-section {
    max-width: calc(100% - 32px);
    padding: 0;
  }
  .compare-table-wrap {
    border-radius: 12px;
    margin: 0;
    padding: 8px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .compare-table {
    table-layout: fixed;
    width: 960px;
    min-width: 960px;
    margin: 0;
    border-spacing: 8px 0;
    font-size: 12px;
  }
  .compare-table thead th {
    font-size: 13px;
    padding: 14px 10px;
  }
  .compare-table thead th:first-child,
  .compare-table tbody td:first-child,
  .compare-table tfoot td:first-child {
    width: 320px;
  }
  .compare-table thead th:first-child {
    font-size: 14px;
  }
  .compare-table tbody td {
    padding: 10px 10px;
    font-size: 12px;
    line-height: 1.35;
  }
  .compare-table thead th:not(:first-child),
  .compare-table tbody td:not(:first-child),
  .compare-table tfoot td:not(:first-child) {
    width: 200px;
  }
  .compare-table tfoot td {
    padding: 16px 10px;
  }
  .compare-table tfoot td:first-child {
    font-size: 14px;
  }
  .compare-check { width: 20px; height: 20px; }
  .compare-check svg { width: 11px; height: 11px; }
  .compare-empty { width: 18px; height: 18px; border-width: 2px; }
  .compare-table tfoot .btn {
    font-size: 12px;
    height: auto;
    min-height: 36px;
    padding: 12px;
    max-width: none;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
  }
}
@media (max-width: 640px) {
  /* ── Plans Hero ── */
  .plans-hero {
    padding: 30px 16px 24px;
    margin: 0;
  }
  .plans-hero h1 {
    font-size: 30px;
    line-height: 1.1;
    margin: 0 0 18px;
  }
  .plans-hero .plans-hero-sub {
    font-size: 14px;
    margin: 0 0 24px;
  }
  .plans-hero .cta-row {
    flex-direction: column;
    width: 100%;
    gap: 20px;
    margin: 0 0 24px;
  }
  .plans-hero .cta-row .btn {
    width: 100% !important;
  }
  .plans-hero-bullets {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 16px;
    font-size: 12.5px;
  }

  /* ── Pricing ── */
  .pricing-section {
    max-width: calc(100% - 32px);
    padding: 40px 0 0;
    margin: 0 auto 24px;
  }
  .pricing-section .pricing-title {
    font-size: 26px;
    margin: 0 0 36px;
  }
  .pricing-card {
    padding: 26px 20px 20px;
  }
  .pricing-card .pricing-name {
    font-size: 22px;
  }
  .pricing-card .pricing-desc {
    font-size: 14px;
    min-height: 0;
  }
  .pricing-card .pricing-price .num {
    font-size: 22px;
  }
  .pricing-card.featured {
    box-shadow: 0 0 0 4px rgba(206, 72, 54, 0.08);
  }

  /* ── Compare table — horizontal scroll com colunas largas o suficiente
        para o texto do botão CTA ficar em 1 linha ── */
  .compare-section {
    max-width: calc(100% - 32px);
    padding: 0;
    margin: 0 auto 24px;
  }
  .compare-table-wrap {
    border-radius: 12px;
    margin: 0;
    padding: 8px 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .compare-table {
    table-layout: fixed;
    width: 960px;
    min-width: 960px;
    margin: 0;
    border-spacing: 8px 0;
    font-size: 12px;
  }
  .compare-table thead th {
    font-size: 13px;
    padding: 14px 10px;
  }
  .compare-table thead th:first-child {
    font-size: 14px;
    width: 320px;
  }
  .compare-table tbody td:first-child {
    width: 320px;
  }
  .compare-table tfoot td:first-child {
    width: 320px;
  }
  .compare-table tbody td {
    padding: 10px 10px;
    font-size: 12px;
    line-height: 1.35;
  }
  .compare-table thead th:not(:first-child),
  .compare-table tbody td:not(:first-child),
  .compare-table tfoot td:not(:first-child) {
    width: 200px;
  }
  .compare-table tfoot td {
    padding: 16px 10px 16px;
  }
  .compare-table tfoot td:first-child {
    font-size: 14px;
  }
  .compare-check { width: 20px; height: 20px; }
  .compare-check svg { width: 11px; height: 11px; }
  .compare-empty { width: 18px; height: 18px; border-width: 2px; }
  .compare-table tfoot .btn {
    font-size: 12px;
    height: auto;
    min-height: 36px;
    padding: 12px;
    max-width: none;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
  }
}

/* ─── BlurFade hidden state — Planos ─── */
.plans-hero > *,
.pricing-grid > *,
.compare-table tbody tr {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(18px);
  transition:
    opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.4s cubic-bezier(0.22, 1, 0.36, 1),
    transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, filter, transform;
}
@media (prefers-reduced-motion: reduce) {
  .plans-hero > *,
  .pricing-grid > *,
  .compare-table tbody tr {
    opacity: 1;
    filter: none;
    transform: none;
    transition: none;
  }
}


/* ═══════════════════════════════════════════════════════════════════
   Páginas: Home
   ─────────────────────────────────────────────────────────────────
   Componentes específicos da página /home.html. Migrados do <style>
   inline original em 1538 linhas. Inclui hero, demo card, sections,
   veja-cards, cycle-word (animação), leaves (decorativo) + mobile @media.
   Algumas regras de tokens/master podem duplicar definições anteriores
   deste arquivo (legacy do tempo em que home era a master). Nesses casos
   o último wins por CSS cascade — valores iguais, então é idempotente.
   ═══════════════════════════════════════════════════════════════════ */

  /* ─── Fonts ─── */
  @font-face {
    font-family: 'Gyst';
    src: url('/fonts/Gyst-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Gyst';
    src: url('/fonts/Gyst-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Gyst';
    src: url('/fonts/Gyst-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }
  @font-face {
    font-family: 'Gyst';
    src: url('/fonts/Gyst-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Gyst';
    src: url('/fonts/Gyst-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  @font-face {
    font-family: 'Manrope';
    src: url('/fonts/Manrope.ttf') format('truetype-variations');
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
  }

  :root {
    --c-bg: rgb(242, 239, 230);          /* canvas */
    --c-card: rgba(251, 251, 251, 0.5);  /* card surface */
    --c-card-2: rgb(246, 245, 240);      /* solid card */
    --c-bubble: rgb(236, 232, 219);      /* chat bubble */
    --c-text: rgb(115, 42, 29);          /* primary brown */
    --c-text-2: rgba(115, 42, 29, 0.5);  /* faded brown */
    --c-text-3: rgba(115, 42, 29, 0.12); /* huge numerals */
    --c-accent: rgb(206, 72, 54);        /* signature red */
    --c-accent-soft: rgba(206, 72, 54, 0.06);
    --c-accent-soft-2: rgba(206, 72, 54, 0.1);
    --c-accent-soft-3: rgba(206, 72, 54, 0.05);
    --c-tan: rgba(209, 191, 160, 0.5);   /* secondary button */
    --c-tan-soft: rgba(209, 191, 160, 0.3);
    --c-tan-veil: rgba(209, 191, 160, 0.16);
    --c-cream: rgb(237, 231, 217);       /* on-dark cream */
    --c-cream-veil-08: rgba(237, 231, 217, 0.08);
    --c-cream-veil-16: rgba(237, 231, 217, 0.16);
    --c-green: rgb(125, 186, 68);
    --c-green-soft: rgba(125, 186, 68, 0.12);
    --c-green-soft-2: rgba(125, 186, 68, 0.2);
    --c-divider: rgb(236, 232, 219);
    --shadow-card: 0 12px 40px 0 rgba(115, 42, 29, 0.08);
    --shadow-card-2: 0 4px 32px 0 rgba(115, 42, 29, 0.08);
    --ff-display: 'Gyst', 'Times New Roman', serif;
    --ff-text: 'Manrope', system-ui, -apple-system, sans-serif;
  }

  * { box-sizing: border-box; }
  html, body {
    margin: 0;
    padding: 0;
    background: var(--c-bg);
    color: var(--c-text);
    font-family: var(--ff-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  /* ─── BlurFade scroll-in effect ─── */
  /* Apply initial hidden state via CSS so it's painted before JS runs.
     The JS just adds `.is-in` to trigger the transition. */
  .nav-inner > *,
  .hero-top > *,
  .demo-card,
  .section-card h2,
  .section-card .org-item,
  .section-card .btn-cta-row,
  .section-veja .pill,
  .section-veja .veja-title,
  .section-veja .veja-sub,
  .section-veja .btn-cta-row,
  .veja-card,
  .section-team .team-photo,
  .section-team .team-text > *,
  .footer-cta-left > *,
  .footer-cta-right > *,
  .footer-bullets > *,
  .footer-bottom > * {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(18px);
    transition:
      opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
      filter 1.4s cubic-bezier(0.22, 1, 0.36, 1),
      transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, filter, transform;
  }
  .is-in {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    will-change: auto !important;
  }
  @media (prefers-reduced-motion: reduce) {
    .nav-inner > *,
    .hero-top > *,
    .demo-card,
    .section-card h2,
    .section-card .org-item,
    .section-card .btn-cta-row,
    .section-veja .pill,
    .section-veja .veja-title,
    .section-veja .veja-sub,
    .section-veja .btn-cta-row,
    .veja-card,
    .section-team .team-photo,
    .section-team .team-text > *,
    .footer-cta-left > *,
    .footer-cta-right > *,
    .footer-bullets > *,
    .footer-bottom > * {
      opacity: 1;
      filter: none;
      transform: none;
      transition: none;
    }
  }

  /* Page is full-viewport width; inner sections are width-capped where needed. */
  html, body { overflow-x: hidden; }
  .page {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }

  /* ─── Header / Nav ─── */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 70px;
    background: var(--c-bg);
    border-bottom: 1px solid var(--c-divider);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 50;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
  }
  body { padding-top: 70px; }
  .nav.is-scrolled {
    box-shadow: var(--shadow-card-2);
    border-bottom-color: transparent;
  }
  .nav-inner {
    width: 1200px;
    height: 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 24px;
  }
  .nav-links {
    display: flex;
    gap: 28px;
    font-size: 13px;
    font-weight: 500;
    color: var(--c-text);
    align-items: center;
  }
  .nav-links a {
    color: var(--c-text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
    transition: opacity 280ms ease-out;
  }
  .nav-links a:hover { opacity: 0.55; }

  /* ─── Dropdown menu (shadcn/Radix style) ─── */
  .dropdown { position: relative; }  .dropdown-trigger {
    background: transparent;
    border: 0;
    padding: 0;
    color: var(--c-text);
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    transition: opacity 0.15s ease;
  }
  .dropdown-trigger:hover { opacity: 0.7; }
  .dropdown-trigger .chev {
    transition: transform 0.2s ease;
  }
  .dropdown[data-state="open"] .dropdown-trigger .chev {
    transform: rotate(180deg);
  }
  .dropdown-content {
    position: absolute;
    top: calc(100% + 8px);
    left: -8px;
    min-width: 180px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    box-shadow:
      0 10px 38px -10px rgba(22, 23, 24, 0.18),
      0 10px 20px -15px rgba(22, 23, 24, 0.12);
    padding: 6px;
    z-index: 50;
    opacity: 0;
    transform: translateY(-4px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.16s ease, transform 0.16s ease;
    transform-origin: top left;
  }
  .dropdown[data-state="open"] .dropdown-content {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
  }
  .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 6px;
    color: var(--c-text);
    text-decoration: none;
    cursor: pointer;
    transition: background 0.12s ease;
    width: 100%;
    box-sizing: border-box;
  }
  .dropdown-item:hover { background: color-mix(in oklch, var(--c-cream) 50%, transparent); opacity: 1 !important; }
  .dropdown-item .ico {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--c-cream);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--c-primary);
    margin-top: 1px;
  }
  .dropdown-item .ico svg { width: 16px; height: 16px; }
  .dropdown-item .text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
  .dropdown-item .text .title {
    font-family: var(--ff-body);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.2;
    color: var(--c-text);
  }
  .dropdown-item .text .desc {
    font-family: var(--ff-body);
    font-weight: 400;
    font-size: 12px;
    line-height: 1.35;
    color: var(--c-muted);
  }
  .dropdown-separator {
    height: 1px;
    background: rgba(0, 0, 0, 0.06);
    margin: 6px 4px;
  }
  .nav-logo {
    display: flex;
    align-items: center;
    justify-self: center;
  }
  .nav-logo svg { display: block; height: 24px; width: auto; }
  .footer-logo svg { display: block; height: 24px; width: auto; color: var(--c-cream); }
  .footer-logo svg path { fill: currentColor; }
  .nav-cta {
    display: flex;
    gap: 12px;
    justify-self: end;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 16px;
    border-radius: 12px;
    font-family: var(--ff-text);
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    border: 0;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                background-color 0.45s ease;
    will-change: transform;
  }
  .btn:hover { transform: translateY(-1px); }

  /* Primary button — glow + gradient overlay on hover */
  .btn-primary {
    background-color: var(--c-accent);
    color: rgb(244, 241, 234);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                background-color 0.45s ease;
  }
  .btn-primary:hover { transform: translateY(-3px); }
  .btn-primary::before {
    /* Soft glow that grows under the button */
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(closest-side, rgba(206, 72, 54, 0.55), transparent 70%);
    filter: blur(14px);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
  }
  .btn-primary::after {
    /* Gradient overlay (light top → dark bottom) + subtle highlight */
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(120% 80% at 50% 0%, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.08) 35%, transparent 70%),
      linear-gradient(180deg, rgb(214, 84, 64) 0%, rgb(186, 60, 44) 100%);
    opacity: 0;
    transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    border-radius: inherit;
    z-index: -1;
  }
  .btn-primary:hover {
    box-shadow:
      0 22px 36px -12px rgba(206, 72, 54, 0.55),
      0 14px 22px -10px rgba(206, 72, 54, 0.4);
  }
  .btn-primary:hover::before { opacity: 1; }
  .btn-primary:hover::after { opacity: 1; }
  .btn-primary:active { transform: translateY(0); }
  .btn-tan { background: var(--c-tan); color: var(--c-text); }
  .btn-tan-soft { background: var(--c-tan-soft); color: var(--c-text); }
  .btn-outline {
    background: transparent;
    border: 1px solid var(--c-accent);
    color: var(--c-accent);
  }
  .btn-outline-dark {
    background: transparent;
    border: 1px solid var(--c-text);
    color: var(--c-text);
  }
  .btn-outline-cream {
    background: transparent;
    border: 1px solid var(--c-cream);
    color: var(--c-cream);
  }
  .btn-cta-row {
    display: flex;
    gap: 12px;
    justify-content: center;
  }

  /* ─── Pills ─── */
  .pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 31px;
    padding: 0 12px;
    border-radius: 100px;
    font-weight: 700;
    font-size: 11px;
    line-height: 1;
    white-space: nowrap;
  }
  .pill-accent {
    background: var(--c-accent-soft);
    color: var(--c-accent);
    box-shadow: inset 0 0 0 1px var(--c-accent-soft-2);
  }

  /* Animated rotating border (orange) for special pills — Attio-style thin streak */
  .pill-glow {
    position: relative;
    isolation: isolate;
    --pill-glow-color: 206, 72, 54;
  }
  .pill-glow.pill-glow-cream { --pill-glow-color: 237, 231, 217; }
  .pill-glow::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: conic-gradient(
      from var(--angle, 0deg),
      transparent 0deg,
      transparent 200deg,
      rgba(var(--pill-glow-color), 0.0) 220deg,
      rgba(var(--pill-glow-color), 0.95) 350deg,
      rgba(var(--pill-glow-color), 0.0) 360deg
    );
    -webkit-mask:
      linear-gradient(#000, #000) content-box,
      linear-gradient(#000, #000);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
    animation: pill-glow-spin 3.2s linear infinite;
    z-index: 1;
  }
  @property --angle {
    syntax: "<angle>";
    inherits: false;
    initial-value: 0deg;
  }
  @keyframes pill-glow-spin {
    to { --angle: 360deg; }
  }

  /* Cycling word with blur-in effect (per-letter stagger) */
  .cycle-word {
    color: var(--c-accent);
    display: inline-block;
  }
  .cycle-word__inner {
    display: inline-block;
    white-space: nowrap;
  }
  .cycle-word__char {
    display: inline-block;
    will-change: filter, opacity, transform;
    opacity: 0;
    filter: blur(10px);
    transform: translateY(6px);
    animation: cw-blur-in 0.55s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: var(--cw-delay, 0s);
  }
  .cycle-word__inner.is-out .cycle-word__char {
    animation: cw-blur-out 0.35s cubic-bezier(0.4, 0, 1, 1) forwards;
    animation-delay: var(--cw-delay-out, 0s);
  }
  @keyframes cw-blur-in {
    0%   { opacity: 0; filter: blur(10px); transform: translateY(6px); }
    100% { opacity: 1; filter: blur(0);    transform: translateY(0); }
  }
  @keyframes cw-blur-out {
    0%   { opacity: 1; filter: blur(0);    transform: translateY(0); }
    100% { opacity: 0; filter: blur(10px); transform: translateY(-6px); }
  }
  .pill-green {
    background: var(--c-green-soft);
    color: var(--c-green);
  }
  .pill-outline {
    background: transparent;
    border: 1px solid var(--c-text);
    color: var(--c-text);
  }
  .pill-cream {
    background: var(--c-cream-veil-08);
    border: 0;
    box-shadow: inset 0 0 0 1px var(--c-cream-veil-16);
    color: var(--c-cream);
  }

  /* ─── Section 1 — Hero ─── */
  .hero {
    position: relative;
    width: 100%;
    /* Bleed: in figma the seção bleed extends -1628 left, +width. We keep a bg block 100vw-ish via a pseudo. */
  }
  .hero-bleed {
    position: relative;
    /* full-bleed cream block — fixed height; demo card overflows ~91px below */
    background: rgba(209, 191, 160, 0.16);
    border-radius: 0 0 20px 20px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: 926px;
    padding: 50px 0 0;
    overflow: visible;
  }
  /* ─── Floating leaves ─── */
  .leaves {
    display: none;
  }
  .leaf {
    position: absolute;
    will-change: transform;
    animation: leaf-drift var(--dur, 14s) ease-in-out infinite;
    animation-delay: var(--delay, 0s);
  }
  .leaf svg { display: block; width: 100%; height: 100%; }
  .leaf.dark svg path { fill: rgba(237, 231, 217, 0.06); }

  @keyframes leaf-drift {
    0%   { transform: translate(0, 0)        rotate(var(--r, 0deg)); }
    20%  { transform: translate(18px, -22px) rotate(calc(var(--r, 0deg) + 12deg)); }
    40%  { transform: translate(-12px, -36px) rotate(calc(var(--r, 0deg) - 10deg)); }
    60%  { transform: translate(-26px, -18px) rotate(calc(var(--r, 0deg) + 8deg)); }
    80%  { transform: translate(10px, -8px)  rotate(calc(var(--r, 0deg) - 6deg)); }
    100% { transform: translate(0, 0)        rotate(var(--r, 0deg)); }
  }
  @media (prefers-reduced-motion: reduce) {
    .leaf { animation: none; }
  }

  .hero-inner {
    position: relative;
    width: 1200px;
    margin: 0 auto;
    z-index: 1;
  }
  .hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 24px;
    padding: 0 0 48px;
  }
  .hero-title {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 60px;
    line-height: 1;
    color: var(--c-text);
    margin: 0;
    max-width: 720px;
  }
  .hero-sub {
    font-family: var(--ff-text);
    font-weight: 500;
    font-size: 18px;
    line-height: 30px;
    color: var(--c-text);
    margin: 0;
    max-width: 650px;
  }
  .hero-divider {
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .hero-divider .line {
    width: 40px;
    height: 1px;
    background: var(--c-accent);
  }
  .hero-divider .star { width: 16px; height: 16px; }
  .hero-claim {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    color: var(--c-text);
    margin: 0;
    max-width: 450px;
  }

  /* Hero Demo card — sits inside the cream hero, overflows ~91px below into white */
  .demo-card {
    position: relative;
    width: 1200px;
    height: 440px;
    margin: 0 auto -91px;
    z-index: 2;
    background: var(--c-card-2);
    border-radius: 12px;
    box-shadow: var(--shadow-card);
    padding: 30px;
    display: grid;
    grid-template-columns: 470px 450px;
    align-items: start;
    gap: 30px;
    justify-content: space-between;
  }
  /* Left column inside demo */
  .demo-left { position: relative; padding: 20px 0 20px 20px; }
  .demo-left .demo-pill {
    background: var(--c-green-soft);
    color: var(--c-green);
    margin-bottom: 20px;
  }
  .demo-left h3 {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 40px;
    line-height: 1;
    color: var(--c-text);
    margin: 0 0 20px;
  }
  .demo-left .lead {
    font-family: var(--ff-text);
    font-size: 14px;
    line-height: 24px;
    color: var(--c-text);
    margin: 0 0 20px;
    max-width: 450px;
  }
  .demo-rule {
    width: 40px;
    height: 1px;
    background: var(--c-accent);
    margin: 0 0 20px;
  }
  .demo-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .demo-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 13px;
    line-height: 1;
    color: var(--c-text);
  }
  .check-circle {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
  }

  /* Right column inside demo (chat) */
  .chat {
    position: relative;
    height: 379px;
    background: var(--c-card-2);
    border-radius: 12px;
    box-shadow: var(--shadow-card-2);
    padding: 24px 30px 30px;
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .chat-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(115, 42, 29, 0.1);
    margin-bottom: 24px;
  }
  .chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 100px;
    background: var(--c-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-bg);
  }
  .chat-id { line-height: 1.2; }
  .chat-id .name {
    font-weight: 700;
    font-size: 13px;
    color: var(--c-text);
  }
  .chat-id .status {
    font-size: 10px;
    color: var(--c-text-2);
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 4px;
  }
  .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 100px;
    background: var(--c-green-soft-2);
    display: inline-block;
    position: relative;
    animation: status-pulse-ring 2s ease-out infinite;
  }
  .status-dot::after {
    content: '';
    position: absolute;
    inset: 2px;
    border-radius: 100px;
    background: var(--c-green);
    animation: status-pulse-core 2s ease-in-out infinite;
  }
  @keyframes status-pulse-ring {
    0%   { box-shadow: 0 0 0 0 rgba(125, 186, 68, 0.55); }
    70%  { box-shadow: 0 0 0 8px rgba(125, 186, 68, 0); }
    100% { box-shadow: 0 0 0 0 rgba(125, 186, 68, 0); }
  }
  @keyframes status-pulse-core {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.7; }
  }

  /* ─── Section: Como organizamos ─── */
  .section-card {
    width: 1200px;
    margin: 120px auto 0;
    background: var(--c-card);
    border-radius: 12px;
    padding: 80px 90px;
  }
  .section-card h2 {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 40px;
    line-height: 1;
    text-align: center;
    color: var(--c-text);
    margin: 0 0 80px;
  }
  .grid-organize {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px 100px;
    margin-bottom: 80px;
  }
  .org-item .num {
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    color: var(--c-text-3);
    display: block;
    margin-bottom: 12px;
  }
  .org-item .copy {
    font-family: var(--ff-text);
    font-size: 14px;
    line-height: 24px;
    color: var(--c-text);
    margin: 0;
  }
  .org-item .copy strong { font-weight: 700; }

  /* ─── Section: Veja a Easy ─── */
  .section-veja {
    width: 1200px;
    margin: 50px auto 0;
    text-align: center;
  }
  .veja-pill-row {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
  }
  .section-veja h2 {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 60px;
    line-height: 1;
    color: var(--c-text);
    margin: 0 0 30px;
  }
  .veja-line {
    font-family: var(--ff-display);
    font-style: italic;
    font-size: 18px;
    line-height: 30px;
    color: var(--c-text);
    margin: 0 0 30px;
  }
  .veja-divider {
    display: flex;
    align-items: center;
    gap: 14px;
    justify-content: center;
    margin: 0 0 30px;
  }
  .veja-divider .line {
    width: 40px;
    height: 1px;
    background: var(--c-accent);
  }
  .veja-sub {
    font-family: var(--ff-text);
    font-size: 14px;
    line-height: 24px;
    color: var(--c-text);
    margin: 0 0 32px;
    white-space: pre-line;
  }
  .veja-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 30px;
  }
  .veja-card {
    background: var(--c-card);
    border-radius: 12px;
    padding: 20px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  /* Once the BlurFade reveal has played, swap to a snappy hover transition
     on transform/box-shadow — without clobbering the reveal of opacity/filter
     (and the reveal's own translateY). The 2s delays on transform/box-shadow
     wait out the 1.4s reveal so the entry animation isn't cut short. */
  .veja-card.is-in {
    transition:
      opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1),
      filter 1.4s cubic-bezier(0.22, 1, 0.36, 1),
      transform 1.4s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1) 2s !important;
  }
  /* When hovering after the reveal, override transform with a faster curve. */
  .veja-card.is-in:hover {
    transition:
      transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
  }
  .veja-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: var(--shadow-card);
  }
  .veja-card .photo {
    width: 100%;
    height: 197px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-card);
  }
  .veja-card h3 {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 24px;
    line-height: 1;
    color: var(--c-text);
    margin: 0;
  }
  .veja-card p {
    font-family: var(--ff-text);
    font-size: 14px;
    line-height: 24px;
    color: var(--c-text);
    margin: 0;
    flex: 1;
  }
  .veja-card .more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--c-accent);
    font-weight: 700;
    font-size: 13px;
    text-decoration: none;
    cursor: pointer;
  }
  .veja-card .more:hover { gap: 10px; transition: gap 0.2s; }

  /* ─── Section: Por trás da Easy ─── */
  .section-team {
    width: 1200px;
    height: 407px;
    margin: 30px auto 0;
    background: var(--c-card);
    border-radius: 12px;
    padding: 30px;
    display: grid;
    grid-template-columns: 444px 1fr;
    gap: 30px;
  }
  .section-team .team-photo {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
  }
  .team-text {
    padding: 20px 14px 0 14px;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .team-text .pill-row { display: flex; }
  .team-text h2 {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 40px;
    line-height: 1;
    color: var(--c-text);
    margin: 0;
  }
  .team-text .quote {
    font-family: var(--ff-display);
    font-size: 18px;
    line-height: 28px;
    color: var(--c-text);
    font-style: italic;
    margin: 0;
  }
  .team-text .quote::before { content: '“'; color: var(--c-accent); font-size: 30px; vertical-align: -6px; }
  .team-text .quote::after { content: '”'; color: var(--c-accent); font-size: 30px; vertical-align: -10px; }
  .team-text .mission {
    font-family: var(--ff-text);
    font-size: 14px;
    line-height: 24px;
    color: var(--c-text);
    margin: 0;
  }
  .team-text .mission strong { font-weight: 700; }

  /* ─── Footer ─── */
  .footer-bleed {
    margin-top: 50px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    background: var(--c-text);
    color: var(--c-cream);
    padding: 20px 0;
    position: relative;
    overflow: hidden;
  }

  .footer-inner {
    position: relative;
    z-index: 1;
    width: 1200px;
    margin: 0 auto;
    padding: 0;
  }
  .footer-cta-grid {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 100px;
    padding-bottom: 50px;
  }
  .footer-cta-left h2 {
    font-family: var(--ff-display);
    font-weight: 400;
    font-size: 40px;
    line-height: 1;
    color: var(--c-cream);
    margin: 20px 0 20px;
  }
  .footer-cta-left p {
    font-family: var(--ff-text);
    font-size: 14px;
    line-height: 24px;
    color: var(--c-cream);
    margin: 0 0 32px;
    max-width: 500px;
  }
  .footer-cta-right {
    align-self: center;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    text-align: right;
    padding-left: 150px;
  }
  .footer-cta-right .footer-bullet {
    text-align: right;
  }
  .footer-bullet {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 14px;
    color: var(--c-cream);
  }
  .footer-bullet .dot {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
    border-radius: 100px;
    background: var(--c-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .footer-divider {
    height: 1px;
    background: rgba(239, 234, 221, 0.16);
    margin: 0 0 50px;
  }
  .footer-bottom {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 40px;
    color: var(--c-cream);
  }
  .footer-copy-row {
    margin-top: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--ff-display);
    font-weight: 700;
    font-size: 22px;
    color: var(--c-cream);
    letter-spacing: 0.04em;
  }
  .footer-nav {
    display: flex;
    gap: 24px;
    justify-content: flex-end;
    font-size: 13px;
    color: var(--c-cream);
  }
  .footer-nav a { color: var(--c-cream); text-decoration: none; transition: opacity 280ms ease-out; }
  .footer-nav a:hover { opacity: 0.55; }
  .footer-social {
    display: flex;
    gap: 8px;
    justify-self: end;
    align-items: center;
  }
  .footer-social .ico {
    width: 24px;
    height: 24px;
    color: var(--c-cream);
  }
  .footer-copy {
    font-size: 12px;
    color: var(--c-cream);
    opacity: 0.8;
  }

  /* ═══════════════════════════════════════════════════════════════
     ─── MOBILE NAV: hamburger + drawer (always present, hidden on desktop)
     ═══════════════════════════════════════════════════════════════ */
  .nav-burger {
    display: none;
    background: transparent;
    border: 0;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    color: var(--c-text);
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease;
  }
  .nav-burger:hover { background: var(--c-tan-veil); }

  .drawer-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(115, 42, 29, 0.4);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    z-index: 90;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }
  .drawer-backdrop.is-visible { opacity: 1; pointer-events: auto; }

  .drawer {
    position: fixed;
    top: 0;
    right: 0;
    height: 100%;
    width: min(86vw, 340px);
    background: var(--c-bg);
    color: var(--c-text);
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -16px 0 40px -12px rgba(115, 42, 29, 0.18);
    padding: 20px 22px 28px;
    gap: 24px;
  }
  .drawer.is-open { transform: translateX(0); }
  .drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--c-divider);
  }
  .drawer-logo svg { display: block; height: 16px; width: auto; }
  .drawer-close {
    background: transparent;
    border: 0;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    color: var(--c-text);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background 0.2s ease;
  }
  .drawer-close:hover { background: var(--c-tan-veil); }
  .drawer-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
  }
  .drawer-link {
    display: flex;
    align-items: center;
    padding: 14px 4px;
    font-family: var(--ff-text);
    font-weight: 600;
    font-size: 16px;
    color: var(--c-text);
    text-decoration: none;
    cursor: pointer;
    border-bottom: 1px solid rgba(115, 42, 29, 0.06);
    transition: color 0.15s ease;
  }
  .drawer-link:hover { color: var(--c-accent); }
  .drawer-sep {
    height: 12px;
    border: 0;
  }
  .drawer-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* ═══════════════════════════════════════════════════════════════
     ─── MOBILE LAYOUT (≤ 640px)
     ═══════════════════════════════════════════════════════════════ */
  @media (max-width: 640px) {
    /* Container & nav --------------------------------------------------- */
    .nav { height: 60px; }
    body { padding-top: 60px; }
    .nav-inner {
      width: 100%;
      padding: 0 18px;
      grid-template-columns: 1fr auto;
      gap: 0;
      height: 60px;
    }
    .nav-links { display: none; }
    .nav-cta { display: none; }
    .nav-logo { justify-self: start; order: 0; }
    .nav-logo svg { height: 20px; }
    .nav-burger { display: inline-flex; justify-self: end; order: 2; }

    /* Buttons & pills --------------------------------------------------- */
    .btn { font-size: 14px; height: 46px; border-radius: 12px; padding: 0 18px; }
    .btn-cta-row {
      flex-direction: column;
      width: 100%;
      gap: 20px;
    }
    .btn-cta-row .btn { width: 100% !important; }
    .pill { font-size: 11px; height: 30px; }

    /* Hero -------------------------------------------------------------- */
    .hero-bleed {
      height: auto !important;
      padding: 28px 0 32px !important;
      border-radius: 0 0 18px 18px;
    }
    .hero-inner {
      width: 100%;
      padding: 0 16px;
      height: 1100px !important;
    }
    .hero-top {
      gap: 18px !important;
      padding: 0 0 24px !important;
      text-align: center;
    }
    .hero-title {
      font-size: 36px !important;
      line-height: 1.05 !important;
      max-width: 100%;
      margin: 0 !important;
    }
    .hero-sub {
      font-size: 15px;
      line-height: 1.55 !important;
      max-width: 100%;
    }
    .hero-divider .line { width: 28px; }
    .hero-claim {
      font-size: 16px;
      line-height: 1.45;
      max-width: 320px;
    }

    /* Demo card — full-width below hero, no bleed overflow ------------- */
    .demo-card {
      width: 100%;
      max-width: 100%;
      height: auto !important;
      grid-template-columns: 1fr;
      gap: 22px;
      padding: 22px;
      margin: 0 0 -40px !important;
      border-radius: 14px;
    }
    .demo-left { padding: 4px 0 0 0; }
    .demo-left h3 {
      font-size: 26px !important;
      line-height: 1.1 !important;
      margin-bottom: 14px;
    }
    .demo-left h3 br { display: none; }
    .demo-left .lead { font-size: 14px; line-height: 22px; max-width: 100%; }
    .demo-list { gap: 10px !important; }
    .demo-list li { font-size: 13px; line-height: 1.35; }
    .chat {
      height: 360px !important;
      min-height: 360px !important;
      max-height: 360px !important;
      padding: 18px 18px 20px;
    }

    /* Section: Como organizamos ---------------------------------------- */
    .section-card {
      width: calc(100% - 32px) !important;
      margin: 24px 16px 0 !important;
      padding: 44px 22px 22px !important;
      border-radius: 14px;
    }
    .section-card h2 {
      font-size: 30px !important;
      line-height: 1.1 !important;
      margin-bottom: 36px !important;
    }
    .grid-organize {
      grid-template-columns: 1fr;
      gap: 28px !important;
      margin-bottom: 36px !important;
    }
    .org-item .num { font-size: 32px; }
    .org-item .copy { font-size: 14px; line-height: 22px; }

    /* Section: Veja a Easy --------------------------------------------- */
    .section-veja {
      width: calc(100% - 32px) !important;
      margin: 50px 16px 0 !important;
    }
    .section-veja h2 {
      font-size: 36px !important;
      line-height: 1.05 !important;
      margin: 0 0 22px !important;
    }
    .veja-line { font-size: 16px; line-height: 1.5; margin: 0 0 22px; }
    .veja-divider .line { width: 28px; }
    .veja-sub {
      font-size: 14px;
      line-height: 22px;
      margin: 0 0 32px !important;
      white-space: normal;
    }
    .section-veja .btn-cta-row { padding: 0 0 38px !important; }
    .section-veja .btn-cta-row .btn { width: 100% !important; }
    .veja-cards {
      grid-template-columns: 1fr;
      gap: 20px;
      margin-top: 0;
    }
    .veja-card { padding: 16px; gap: 18px; }
    .veja-card .photo { height: 200px; }
    .veja-card h3 { font-size: 22px; }
    .veja-card p { font-size: 14px; line-height: 22px; }

    /* Section: Por trás da Easy ---------------------------------------- */
    .section-team {
      width: calc(100% - 32px) !important;
      height: auto !important;
      margin: 20px 16px 0 !important;
      padding: 16px !important;
      grid-template-columns: 1fr;
      gap: 18px !important;
      border-radius: 14px;
    }
    .section-team .team-photo {
      height: 240px;
      width: 100%;
    }
    .team-text { padding: 8px 6px 12px; gap: 16px; }
    .team-text h2 {
      font-size: 30px !important;
      line-height: 1.1 !important;
    }
    .team-text h2 br { display: none; }
    .team-text .quote, .team-text .mission { font-size: 14px; line-height: 22px; }

    /* Footer ------------------------------------------------------------ */
    .footer-bleed {
      margin-top: 50px;
      padding: 0;
    }
    .footer-inner {
      width: 100%;
      padding: 20px 22px;
    }
    .footer-cta-grid {
      grid-template-columns: 1fr;
      gap: 36px !important;
      padding-bottom: 36px !important;
    }
    .footer-cta-left h2 {
      font-size: 28px !important;
      line-height: 1.1 !important;
      margin: 20px 0 20px !important;
    }
    .footer-cta-left h2 br { display: none; }
    .footer-cta-left p { font-size: 14px; line-height: 22px; max-width: 100%; }
    .footer-cta-left .btn-cta-row .btn { width: 100% !important; }
    .footer-cta-right {
      width: 100% !important;
      padding: 0 !important;
      margin: 0 !important;
      gap: 14px !important;
      align-self: stretch !important;
    }
    .footer-bullet {
      font-size: 13.5px;
      text-align: left !important;
    }
    .footer-divider { margin: 0 0 36px !important; }

    /* Bottom: stack everything; social row ABOVE the copy with copy left, social right */
    .footer-bottom {
      grid-template-columns: 1fr !important;
      gap: 18px !important;
      align-items: flex-start !important;
    }
    .footer-logo { justify-content: flex-start; }
    .footer-logo svg { height: 20px; }
    .footer-nav {
      justify-content: flex-start !important;
      flex-wrap: wrap;
      gap: 14px 18px;
      font-size: 13px !important;
      text-align: left !important;
    }
    /* Order on mobile: logo, nav, social-row (social + copy on same line, social right of copy as anchor → user asked: rede social fica acima do texto que fica ao seu lado esquerdo. Stack: social on top, copy below -> we use flex column reversed for the row */
    .footer-copy-row {
      flex-direction: column-reverse;
      align-items: flex-start;
      gap: 16px;
      margin-top: 24px !important;
    }
    .footer-copy {
      font-size: 11.5px;
      line-height: 1.5;
      width: 100%;
    }
    .footer-social { justify-self: flex-start; }
  }

  /* Hide desktop floating leaves on small screens (already display:none, but ensure) */
  @media (max-width: 640px) {
    .leaves { display: none !important; }
  }

  /* ─── Páginas: Quem somos ─────────────────────────────────────
     Reaproveita .plans-hero (sem botões/bullets), .team-section,
     .section-card e .section-veja. Variantes abaixo. */

  /* Team-section espelhada: foto à direita, texto à esquerda */
  .team-section--mirror .team-block {
    grid-template-columns: 450px 444px;
  }

  /* Story (Seção 2 quem-somos): texto largo + foto ancorada à direita */
  .team-section--mirror .team-block--story {
    grid-template-columns: 550px 1fr;
  }
  .team-section--mirror .team-photo--edge {
    background-position: right center;
    justify-self: end;
  }

  /* Placeholder tan (Seção 4 — área reservada para imagem futura) */
  .team-photo--placeholder {
    background: var(--c-tan-veil);
    background-image: none;
  }

  /* Flor: imagem centralizada, com margens laterais iguais (Seção 6) */
  .team-photo--flor {
    background: url('/assets/flor.png') 135% center/contain no-repeat;
  }

  /* Seção 3: grid de 3 colunas para a "Como organizamos..." adaptada */
  .grid-organize--cols-3 {
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 60px;
  }

  /* Sub-título italico em cada item da Seção 3 ("Simplicidade como valor"…) */
  .org-item .sub {
    font-family: var(--ff-display);
    font-style: italic;
    font-weight: 400;
    font-size: 18px;
    line-height: 1.3;
    color: var(--c-accent);
    margin: 0 0 12px;
  }

  /* Texto corrido (Manrope) dentro de .team-text para as seções 2/4/6 */
  .team-text p.body {
    font-family: var(--ff-text);
    font-size: 14px;
    line-height: 24px;
    color: var(--c-text);
    margin: 0;
  }
  .team-text p.body strong { font-weight: 700; }
  .team-text p.body.accent { color: var(--c-accent); }

  /* Mobile: colapsa para 1 coluna */
  @media (max-width: 640px) {
    .team-section--mirror .team-block { grid-template-columns: 1fr; }
    .grid-organize--cols-3 { grid-template-columns: 1fr; gap: 30px; }
    .team-photo--placeholder,
    .team-photo--flor { width: 100%; height: 240px; }
    .team-photo--flor { background-position: center center; }
    .team-section--mirror .team-photo--edge { background-position: center center; justify-self: stretch; }
  }

  /* Hero sem padding inferior (quem-somos) — vale desktop e mobile */
  .plans-hero--flush-bottom { padding-bottom: 0 !important; }


/* ──────────────────────────────────────────────────────────────────────
   PÁGINAS: Termos de uso (/termos-de-uso)
   Reaproveita .plans-hero e .section-card. Variante --doc deixa o card
   com conteúdo alinhado à esquerda e padding mais enxuto para texto longo.
   ────────────────────────────────────────────────────────────────────── */

  /* Section-card variante "doc" — texto alinhado à esquerda, padding enxuto */
  .section-card--doc {
    padding: 50px 60px !important;
  }
  .section-card--doc h2 {
    text-align: left;
    margin: 0 0 32px;
    font-size: 32px;
  }

  /* Documento legal — títulos numerados + parágrafos + listas */
  .legal-doc {
    font-family: var(--ff-text);
    color: var(--c-text);
    max-width: 900px;
  }
  .legal-doc h3 {
    font-family: var(--ff-text);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: var(--c-text);
    text-transform: uppercase;
    margin: 28px 0 10px;
  }
  .legal-doc h3:first-child { margin-top: 0; }
  .legal-doc p {
    font-family: var(--ff-text);
    font-size: 14px;
    line-height: 24px;
    color: var(--c-text);
    margin: 0 0 10px;
  }
  .legal-doc p strong { font-weight: 700; }
  .legal-doc ul {
    list-style: disc;
    padding-left: 22px;
    margin: 0 0 10px;
  }
  .legal-doc ul li {
    font-family: var(--ff-text);
    font-size: 14px;
    line-height: 24px;
    color: var(--c-text);
    margin: 0 0 2px;
  }

  /* Mobile: padding mais enxuto */
  @media (max-width: 640px) {
    .section-card--doc {
      padding: 28px 20px !important;
    }
    .section-card--doc h2 {
      font-size: 26px !important;
      margin-bottom: 22px !important;
    }
  }

/* ═════════════════════════════════════════════════════════════════
   .accent — destaque de palavra em títulos (substitui <em>)
   Mantém a cor de destaque sem o itálico.
   ═════════════════════════════════════════════════════════════════ */
.accent { color: var(--c-accent); font-style: normal; }

/* ═════════════════════════════════════════════════════════════════
   WhatsApp widget — flutuante (global, todas as páginas)
   FAB verde + toast auto-popup + modal expandido com chat-like UI
   ═════════════════════════════════════════════════════════════════ */
#wa-widget {
  position: fixed; right: 20px; bottom: 20px;
  z-index: 9999;
  font-family: var(--ff-text);
  pointer-events: none;
}
#wa-widget > * { pointer-events: auto; }

/* FAB verde */
.wa-fab {
  position: relative;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  border: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.42);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-fab:hover { transform: scale(1.08); box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55); }
.wa-fab svg { width: 28px; height: 28px; }
.wa-fab-badge {
  position: absolute;
  top: -2px; right: -2px;
  min-width: 20px; height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #ef4444;
  color: #fff;
  font-size: 11px; font-weight: 700; line-height: 20px;
  text-align: center;
  font-family: var(--ff-text);
  box-shadow: 0 0 0 2px #fff;
  pointer-events: none;
  animation: wa-badge-in .25s ease-out;
}
.wa-fab-badge[hidden] { display: none; }
@keyframes wa-badge-in {
  from { transform: scale(.4); opacity: 0; }
  to   { transform: scale(1);  opacity: 1; }
}
.wa-fab::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  animation: wa-pulse 2.4s ease-out infinite;
  opacity: .55;
}
@keyframes wa-pulse {
  0%   { transform: scale(1);   opacity: .55; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Avatar reutilizável (toast + modal) */
.wa-avatar {
  position: relative;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: #25D366;
  flex-shrink: 0;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.wa-avatar--sm { width: 34px; height: 34px; }
.wa-avatar-fallback {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--ff-display, serif);
  font-size: 16px; font-weight: 600;
}
.wa-avatar img {
  position: relative; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Toast (notificação tipo card) */
.wa-toast {
  position: absolute;
  right: 70px; bottom: 4px;
  width: 320px; max-width: calc(100vw - 96px);
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px 14px 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
  opacity: 0; transform: translateY(8px);
  transition: opacity .25s ease, transform .25s ease;
  cursor: pointer;
}
.wa-toast[hidden] { display: none; }
.wa-toast.is-open { opacity: 1; transform: translateY(0); }
.wa-toast-close {
  position: absolute; top: 4px; right: 4px;
  width: 32px; height: 32px;
  border: none; background: transparent;
  cursor: pointer; color: #b8b8b8;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  z-index: 2;
  transition: background .15s ease, color .15s ease;
}
.wa-toast-close svg { width: 18px; height: 18px; pointer-events: none; }
.wa-toast-close:hover { color: rgb(85, 85, 85); background: rgba(0, 0, 0, 0.06); }
.wa-toast-close:active { background: rgba(0, 0, 0, 0.12); }
.wa-toast-row { display: flex; gap: 12px; align-items: flex-start; }
.wa-toast-body { min-width: 0; }
.wa-toast-body strong {
  display: block;
  font-size: 14px; font-weight: 600;
  color: rgb(33, 22, 18);
  margin-bottom: 2px;
}
.wa-toast-body p {
  margin: 0 0 4px;
  font-size: 13px; line-height: 1.4;
  color: rgb(85, 85, 85);
}
.wa-meta { font-size: 11px; color: rgb(150, 150, 150); }

/* Modal expandido */
.wa-modal {
  position: absolute;
  right: 0; bottom: 70px;
  width: 340px; max-width: calc(100vw - 40px);
  background: rgb(246, 245, 240);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  opacity: 0; transform: translateY(8px) scale(.98);
  transform-origin: bottom right;
  transition: opacity .25s ease, transform .25s ease;
  display: flex; flex-direction: column;
  max-height: 70vh;
}
.wa-modal[hidden] { display: none; }
.wa-modal.is-open { opacity: 1; transform: translateY(0) scale(1); }
.wa-modal-header {
  background: var(--c-text);
  color: #fff;
  padding: 14px 14px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 10px;
}
.wa-modal-id { display: flex; align-items: center; gap: 10px; min-width: 0; }
.wa-modal-id > div:not(.wa-avatar) { display: flex; flex-direction: column; gap: 0; }
.wa-modal-id strong {
  display: block;
  font-size: 14px; font-weight: 600;
}
.wa-online {
  display: inline-flex; align-items: center;
  font-size: 11px; opacity: .85;
}
.wa-modal-close {
  border: none; background: transparent; color: #fff;
  cursor: pointer;
  width: 30px; height: 30px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: background .15s ease;
}
.wa-modal-close svg { width: 18px; height: 18px; }
.wa-modal-close:hover { background: rgba(255, 255, 255, 0.14); }

.wa-modal-body {
  flex: 1; min-height: 140px;
  overflow-y: auto;
  padding: 16px 14px;
  background: rgb(246, 245, 240);
  display: flex; flex-direction: column; gap: 10px;
}
.wa-msg {
  align-self: flex-start;
  max-width: 82%;
  background: #fff;
  padding: 8px 12px 6px;
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}
.wa-msg p {
  margin: 0;
  font-size: 13.5px; line-height: 1.45;
  color: rgb(33, 22, 18);
}
.wa-msg p strong { font-weight: 600; }
.wa-msg--late {
  opacity: 0; transform: translateY(4px);
  transition: opacity .3s ease, transform .3s ease;
}
.wa-msg--late.is-in { opacity: 1; transform: none; }
.wa-msg .wa-meta {
  display: block; text-align: right;
  font-size: 10px; margin-top: 2px;
  color: var(--c-accent);
}

/* Typing dots */
.wa-typing {
  align-self: flex-start;
  background: #fff;
  padding: 10px 14px;
  border-radius: 12px;
  border-bottom-left-radius: 4px;
  display: flex; gap: 4px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}
.wa-typing[hidden] { display: none; }
.wa-typing span {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgb(190, 190, 190);
  animation: wa-typing 1.4s infinite ease-in-out;
}
.wa-typing span:nth-child(2) { animation-delay: .2s; }
.wa-typing span:nth-child(3) { animation-delay: .4s; }
@keyframes wa-typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30%          { transform: translateY(-4px); opacity: 1; }
}

/* Input area */
.wa-modal-input {
  display: flex; gap: 8px;
  padding: 10px 12px;
  background: #fff;
  border-top: 1px solid rgba(115, 42, 29, 0.08);
  align-items: center;
}
.wa-modal-input input {
  flex: 1; min-width: 0;
  border: none;
  font-family: var(--ff-text);
  font-size: 13px;
  padding: 8px 12px;
  outline: none;
  border-radius: 999px;
  background: rgb(246, 245, 240);
  color: rgb(33, 22, 18);
}
.wa-modal-input input::placeholder { color: rgb(160, 160, 160); }
.wa-modal-input button {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: #25D366;
  color: #fff;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background .15s ease, transform .15s ease;
}
.wa-modal-input button:hover { background: #1ec257; transform: scale(1.05); }
.wa-modal-input button svg { width: 18px; height: 18px; }

/* Mobile responsivo */
@media (max-width: 640px) {
  #wa-widget { right: 16px; bottom: 16px; }
  .wa-toast {
    right: 64px;
    width: 270px;
    bottom: 4px;
  }
  .wa-modal {
    width: calc(100vw - 32px);
    right: -4px;
    bottom: 70px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wa-fab::before { animation: none; }
  .wa-typing span { animation: none; }
}
