/* ============================================================
   Lavora — Landing Page
   Paleta extraída do app (lib/core/theme/app_colors.dart)
   ============================================================ */

/* ---- Work Sans (self-hosted) --------------------------------
   Arquivo variável: um só woff2 cobre os pesos 400 a 800, o que sai menor
   que os 5 arquivos estáticos que o site usava via Google Fonts. O site não
   usa itálico (h1/h2 em têm font-style: normal), então nenhuma variante
   itálica é baixada.

   font-display: swap — o texto aparece na fonte do sistema e troca quando a
   Work Sans chega, em vez de ficar invisível esperando. Sem isso o LCP conta
   o tempo até a fonte carregar.

   Os unicode-range vêm do próprio CSS do Google Fonts: sem eles o navegador
   baixaria os dois subconjuntos, não só o que a página precisa.
   Para atualizar os arquivos, veja deploy/README.md.
   ------------------------------------------------------------ */
@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fontes/work-sans-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: "Work Sans";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("../assets/fontes/work-sans-latin-ext.woff2") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Cores do app */
  --primary: #012D1D;
  --primary-container: #1B4332;
  --primary-soft: #86AF99;
  --secondary: #006C48;
  --mint: #92F7C3;
  --mint-dark: #00734D;
  --surface: #F9FAF6;
  --surface-low: #F3F4F1;
  --surface-container: #EEEEEB;
  --white: #FFFFFF;
  --ink: #1A1C1A;
  --ink-soft: #414844;
  --outline: #717973;
  --outline-variant: #C1C8C2;

  /* Derivados */
  --cream: #F4F1E6;
  --shadow-lg: 0 24px 64px -16px rgba(1, 45, 29, 0.25);
  --shadow-md: 0 12px 32px -8px rgba(1, 45, 29, 0.14);
  --shadow-sm: 0 4px 16px -4px rgba(1, 45, 29, 0.10);
  --radius: 20px;
  --radius-lg: 28px;
  --font: "Work Sans", system-ui, -apple-system, sans-serif;
  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 820px; }

/* ---------- Tipografia ---------- */
h1 { font-size: clamp(2.5rem, 5.5vw, 4.25rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: 1.35rem; font-weight: 700; letter-spacing: -0.01em; }
h1 em, h2 em { font-style: normal; position: relative; white-space: nowrap; }
h2 em { color: var(--secondary); }
h1 em {
  background: linear-gradient(120deg, var(--mint) 0%, #4ade80 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font); font-weight: 600; font-size: 1rem;
  padding: 15px 30px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  will-change: transform;
}
.btn:hover { transform: translateY(-2px); }
.btn--sm { padding: 11px 22px; font-size: 0.92rem; }
.btn--primary { background: var(--secondary); color: var(--white); box-shadow: 0 8px 24px -8px rgba(0, 108, 72, 0.5); }
.btn--primary:hover { background: #00814f; box-shadow: 0 12px 32px -8px rgba(0, 108, 72, 0.55); }
.btn--mint { background: var(--mint); color: var(--primary); box-shadow: 0 8px 24px -8px rgba(146, 247, 195, 0.4); }
.btn--mint:hover { background: #a8ffd2; }
.btn--outline { background: transparent; color: var(--primary); border: 1.5px solid var(--outline-variant); }
.btn--outline:hover { border-color: var(--secondary); color: var(--secondary); background: rgba(0, 108, 72, 0.05); }

/* ---------- Chips ---------- */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 8px 16px; border-radius: 100px;
  background: rgba(0, 108, 72, 0.09); color: var(--secondary);
  border: 1px solid rgba(0, 108, 72, 0.18);
}
.chip--glow {
  background: rgba(146, 247, 195, 0.12); color: var(--mint);
  border: 1px solid rgba(146, 247, 195, 0.3);
  backdrop-filter: blur(8px);
}
.chip__dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--mint);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(146, 247, 195, 0.6); }
  50% { box-shadow: 0 0 0 6px rgba(146, 247, 195, 0); }
}

/* ============================================================
   NAVBAR
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 16px 0;
  transition: padding 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.nav--scrolled {
  padding: 10px 0;
  background: rgba(1, 45, 29, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.2);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.4rem; font-weight: 800; color: var(--white); letter-spacing: -0.02em;
}
.nav__brand img { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__links a:not(.btn) {
  color: rgba(255, 255, 255, 0.82); font-weight: 500; font-size: 0.95rem;
  transition: color 0.2s ease; position: relative;
}
.nav__links a:not(.btn)::after {
  content: ""; position: absolute; left: 0; bottom: -4px; width: 0; height: 2px;
  background: var(--mint); border-radius: 2px; transition: width 0.25s ease;
}
.nav__links a:not(.btn):hover { color: var(--white); }
.nav__links a:not(.btn):hover::after { width: 100%; }
.nav__actions { display: flex; align-items: center; gap: 12px; }
.nav__cta-mobile { display: none; }
.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: 0.3s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(160deg, #01261a 0%, var(--primary) 45%, #0a3d2a 100%);
  color: var(--white);
  padding: 150px 0 0;
  overflow: hidden;
}
.hero__glow {
  position: absolute; border-radius: 50%; filter: blur(120px); opacity: 0.55; pointer-events: none;
}
.hero__glow--1 { width: 560px; height: 560px; background: rgba(0, 108, 72, 0.55); top: -180px; right: -120px; }
.hero__glow--2 { width: 420px; height: 420px; background: rgba(146, 247, 195, 0.16); bottom: 40px; left: -160px; }
.hero__grid-bg {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(146, 247, 195, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(146, 247, 195, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 70% at 50% 30%, black 40%, transparent 100%);
}
.hero__inner {
  position: relative; display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 48px; align-items: center; padding-bottom: 96px;
}
.hero__content h1 { margin: 24px 0 20px; }
.hero__sub {
  font-size: 1.18rem; color: rgba(255, 255, 255, 0.78); max-width: 520px; line-height: 1.65;
}
.hero__sub strong { color: var(--mint); font-weight: 600; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 44px; scroll-margin-top: 120px; }

/* Badges das lojas */
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: rgba(255, 255, 255, 0.06); color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px; padding: 12px 22px;
  backdrop-filter: blur(8px);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.store-badge:hover { transform: translateY(-3px); background: rgba(255, 255, 255, 0.12); border-color: rgba(146, 247, 195, 0.5); }

/* Selo de "em breve": enquanto o app não está nas lojas, o elemento é um
   <span>, não um <a>. O visual precisa deixar isso óbvio — sem hover, sem
   cursor de link — para ninguém clicar esperando um download que não existe.
   Foi essa expectativa frustrada que gerou a marcação de "Deceptive pages"
   no Search Console. Ao publicar os apps, remova este modificador. */
.store-badge--soon { opacity: 0.65; cursor: default; }
.store-badge--soon:hover { transform: none; background: rgba(255, 255, 255, 0.06); border-color: rgba(255, 255, 255, 0.16); }

.hero__aviso { margin-top: 18px; font-size: 0.92rem; color: rgba(255, 255, 255, 0.75); max-width: 46ch; }
.hero__aviso a { color: var(--mint); text-decoration: underline; text-underline-offset: 3px; }

.cta-final__acao { margin-top: 22px; }
.store-badge svg { width: 30px; height: 30px; flex-shrink: 0; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge small { font-size: 0.7rem; opacity: 0.75; letter-spacing: 0.02em; }
.store-badge strong { font-size: 1.08rem; font-weight: 600; letter-spacing: -0.01em; }

/* Stats */
.hero__stats { display: flex; gap: 40px; flex-wrap: wrap; }
.hero__stat { display: flex; flex-direction: column; }
.hero__stat strong { font-size: 1.7rem; font-weight: 800; letter-spacing: -0.02em; }
.hero__stat .star { color: var(--mint); margin-left: 2px; }
.hero__stat span:last-child { font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); }

/* ---------- Mockup de celular ---------- */
.hero__mockup { position: relative; display: flex; justify-content: center; perspective: 1200px; }
.phone {
  position: relative; width: 310px; height: 640px;
  background: #0b0f0d; border-radius: 44px; padding: 10px;
  box-shadow:
    0 0 0 2px rgba(255, 255, 255, 0.08),
    0 50px 100px -20px rgba(0, 0, 0, 0.6),
    0 0 80px rgba(146, 247, 195, 0.08);
  transform: rotate(3deg);
  animation: phoneFloat 7s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50% { transform: rotate(3deg) translateY(-14px); }
}
.phone__notch {
  position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 110px; height: 26px; background: #0b0f0d; border-radius: 100px; z-index: 3;
}
.phone__screen {
  width: 100%; height: 100%; border-radius: 36px; overflow: hidden;
  background: var(--surface); display: flex; flex-direction: column;
  color: var(--ink); font-size: 13px;
}

/* Recriação da UI do app */
.app-topbar {
  background: linear-gradient(150deg, var(--primary) 0%, var(--primary-container) 100%);
  color: var(--white); padding: 52px 18px 16px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: space-between;
}
.app-topbar__left { display: flex; align-items: center; gap: 12px; }
.app-topbar__title { font-weight: 700; font-size: 15px; }
.app-topbar__icon { display: flex; color: var(--white); }
.app-topbar__icon svg { width: 18px; height: 18px; }
.app-topbar__icon svg[viewBox="0 0 640 512"] { width: 20px; height: auto; }
.app-topbar__icons { display: flex; gap: 14px; }

.app-body { flex: 1; padding: 14px; overflow: hidden; }
.app-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.app-kpi {
  background: var(--white); border: 1px solid var(--outline-variant); border-radius: 14px;
  padding: 12px 8px; display: flex; flex-direction: column; gap: 6px;
}
.app-kpi__icon {
  width: 26px; height: 26px; border-radius: 8px; background: var(--surface-low);
  display: flex; align-items: center; justify-content: center;
}
.app-kpi__icon svg { width: 14px; height: 14px; }
.app-kpi__icon--green { color: var(--secondary); }
.app-kpi__icon--amber { color: #B8860B; }
.app-kpi__icon--red { color: #C1443C; }
.app-kpi strong { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.app-kpi span:last-child { font-size: 10px; color: var(--ink-soft); font-weight: 600; }

.app-cta {
  width: 100%; border: none; cursor: pointer; margin-bottom: 14px;
  background: linear-gradient(150deg, var(--primary) 0%, var(--primary-container) 100%);
  border-radius: 18px; padding: 16px; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--white); font-weight: 700; font-size: 12.5px; font-family: var(--font);
}
.app-cta__icon {
  width: 32px; height: 32px; border-radius: 50%; background: var(--white); color: var(--primary);
  display: flex; align-items: center; justify-content: center; font-size: 17px; font-weight: 800;
}

.app-list__item {
  background: var(--white); border: 1px solid var(--outline-variant); border-radius: 14px;
  padding: 10px 12px; margin-bottom: 8px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center;
}
.app-list__icon {
  width: 34px; height: 34px; border-radius: 10px; background: var(--surface-low); color: var(--secondary);
  display: flex; align-items: center; justify-content: center;
}
.app-list__icon svg { width: 17px; height: 17px; }
.app-list__icon svg[viewBox="0 0 640 512"],
.app-list__icon svg[viewBox="0 0 576 512"] { width: 19px; height: auto; }
.app-list__text strong { font-size: 11.5px; display: block; }
.app-list__text small { font-size: 10px; color: var(--ink-soft); }
.app-list__chevron { color: var(--outline); display: flex; }
.app-list__chevron svg { width: 16px; height: 16px; }

/* Cards flutuantes */
.float-card {
  position: absolute; display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 16px; padding: 12px 16px; color: var(--ink);
  box-shadow: var(--shadow-lg); z-index: 5; max-width: 250px;
}
.float-card strong { font-size: 0.85rem; display: block; letter-spacing: -0.01em; }
.float-card small { font-size: 0.72rem; color: var(--ink-soft); }
.float-card__icon {
  width: 36px; height: 36px; border-radius: 12px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; font-size: 16px; font-weight: 700;
}
.float-card__icon--green { background: var(--secondary); color: var(--white); }
.float-card__icon--mint { background: var(--mint); }
.float-card--1 { top: 17%; right: -4%; animation: floatY 6s ease-in-out infinite; }
.float-card--2 { bottom: 24%; left: -8%; animation: floatY 7s ease-in-out 0.8s infinite; }
.float-card--3 { bottom: 4%; right: 0%; animation: floatY 8s ease-in-out 1.6s infinite; }
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Marquee ---------- */
.marquee {
  position: relative; border-top: 1px solid rgba(146, 247, 195, 0.15);
  background: rgba(0, 0, 0, 0.25); overflow: hidden; padding: 18px 0;
}
.marquee__track {
  display: flex; align-items: center; gap: 40px; width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee__track span {
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55); white-space: nowrap;
}
.marquee__track i { color: var(--mint); font-style: normal; font-size: 0.7rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SEÇÕES
   ============================================================ */
.section { padding: 110px 0; }
.section--tinted { background: var(--surface-low); }
.section--dark {
  background: linear-gradient(160deg, #01261a 0%, var(--primary) 60%, #0a3d2a 100%);
  color: var(--white);
}
.section__head { text-align: center; max-width: 680px; margin: 0 auto 64px; }
.section__head h2 { margin: 20px 0 16px; }
.section__head p { color: var(--ink-soft); font-size: 1.12rem; }
.section__head--light p { color: rgba(255, 255, 255, 0.7); }
.section__head--light h2 em { color: var(--mint); }

/* ---------- Bento grid ---------- */
.bento {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.bento__card {
  background: var(--white); border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg); padding: 34px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative; overflow: hidden;
}
.bento__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(0, 108, 72, 0.35);
}
.bento__card--large { grid-column: span 2; grid-row: span 2; display: flex; flex-direction: column; }
.bento__card--accent { background: linear-gradient(150deg, #dffbea 0%, var(--mint) 130%); border-color: rgba(0, 115, 77, 0.25); }
.bento__card--accent .bento__icon { background: var(--primary); color: var(--mint); }
.bento__card--dark { background: linear-gradient(150deg, var(--primary) 0%, var(--primary-container) 100%); color: var(--white); border-color: transparent; }
.bento__card--dark .bento__icon { background: rgba(146, 247, 195, 0.14); color: var(--mint); }
.bento__card h3 { margin-bottom: 10px; }
.bento__card p { color: var(--ink-soft); font-size: 1rem; }
.bento__card--dark.bento__card p { color: rgba(255, 255, 255, 0.72); }
.bento__card--accent p { color: var(--mint-dark); }
.bento__icon {
  width: 54px; height: 54px; border-radius: 16px;
  background: rgba(0, 108, 72, 0.09); color: var(--secondary);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.bento__icon svg { width: 26px; height: 26px; }
.bento__icon svg.bento__icon-fa { width: auto; height: 24px; }

/* Mini nota dentro do bento grande */
.bento__visual { margin-top: auto; padding-top: 30px; }
.mini-nota {
  background: var(--surface); border: 1px solid var(--outline-variant);
  border-radius: 18px; padding: 20px 22px; max-width: 440px;
  box-shadow: var(--shadow-sm);
}
.mini-nota__head {
  display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; font-size: 0.9rem; margin-bottom: 14px;
}
.mini-nota__badge {
  background: rgba(0, 108, 72, 0.1); color: var(--secondary);
  font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 100px;
}
.mini-nota__row {
  display: flex; justify-content: space-between; gap: 16px;
  font-size: 0.88rem; padding: 7px 0; border-top: 1px dashed var(--outline-variant);
}
.mini-nota__row span { color: var(--ink-soft); }
.mini-nota__total { color: var(--secondary); }
.mini-nota__bar { height: 6px; background: var(--surface-container); border-radius: 6px; margin-top: 14px; overflow: hidden; }
.mini-nota__bar i {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--secondary), var(--mint));
  border-radius: 6px; transform-origin: left;
  animation: fillBar 2.4s ease-out infinite;
}
@keyframes fillBar {
  0% { transform: scaleX(0); }
  60%, 100% { transform: scaleX(1); }
}

/* ---------- Para quem ---------- */
.audience { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.audience__card {
  background: var(--white); border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg); padding: 44px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.audience__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.audience__card--dark {
  background: linear-gradient(155deg, var(--primary) 0%, var(--primary-container) 100%);
  color: var(--white); border-color: transparent;
}
.audience__emoji { font-size: 2.6rem; display: block; margin-bottom: 18px; }
.audience__emoji--badge {
  width: 54px; height: 54px; border-radius: 16px;
  background: rgba(146, 247, 195, 0.14); color: var(--mint);
  display: flex; align-items: center; justify-content: center;
}
.audience__emoji--badge svg { width: 24px; height: 24px; }
.audience__card h3 { font-size: 1.6rem; margin-bottom: 10px; }
.audience__card > p { color: var(--ink-soft); margin-bottom: 24px; }
.audience__card--dark.audience__card > p { color: rgba(255, 255, 255, 0.72); }
.audience__card .btn { margin-top: 30px; width: 100%; }

.checklist li {
  position: relative; padding: 9px 0 9px 34px; font-size: 1rem; color: var(--ink-soft);
}
.checklist li::before {
  content: "✓"; position: absolute; left: 0; top: 8px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0, 108, 72, 0.12); color: var(--secondary);
  font-size: 0.75rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.checklist--light li { color: rgba(255, 255, 255, 0.82); }
.checklist--light li::before { background: rgba(146, 247, 195, 0.16); color: var(--mint); }

.asterisk {
  color: var(--secondary); font-weight: 700; text-decoration: none;
  margin-left: 2px; transition: color 0.2s ease;
}
.asterisk:hover { color: var(--mint-dark); text-decoration: underline; }
.checklist--light .asterisk { color: var(--mint); }
.checklist--light .asterisk:hover { color: var(--white); }

/* ---------- Como funciona ---------- */
.steps {
  display: grid; grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 24px; align-items: start;
}
.step {
  background: var(--white); border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg); padding: 36px 30px; text-align: center; height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.step:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.step__number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  background: linear-gradient(140deg, var(--secondary), var(--primary));
  color: var(--white); font-size: 1.3rem; font-weight: 800; margin-bottom: 20px;
  box-shadow: 0 8px 20px -6px rgba(0, 108, 72, 0.5);
}
.step h3 { margin-bottom: 10px; font-size: 1.2rem; }
.step p { color: var(--ink-soft); font-size: 0.97rem; }
.step__arrow {
  align-self: center; font-size: 1.6rem; color: var(--secondary); font-weight: 700;
}

/* ---------- Depoimentos ---------- */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial {
  background: rgba(255, 255, 255, 0.05); border: 1px solid rgba(146, 247, 195, 0.14);
  border-radius: var(--radius-lg); padding: 34px;
  backdrop-filter: blur(8px);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
.testimonial:hover { transform: translateY(-6px); border-color: rgba(146, 247, 195, 0.4); background: rgba(255, 255, 255, 0.08); }
.testimonial__stars { color: var(--mint); letter-spacing: 3px; margin-bottom: 16px; }
.testimonial blockquote {
  font-size: 1.05rem; line-height: 1.65; color: rgba(255, 255, 255, 0.88); margin-bottom: 24px;
}
.testimonial figcaption { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(140deg, var(--mint), var(--secondary));
  color: var(--primary); font-weight: 800; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
}
.testimonial figcaption strong { display: block; font-size: 0.95rem; }
.testimonial figcaption small { color: rgba(255, 255, 255, 0.55); font-size: 0.8rem; }

/* ---------- Planos ---------- */
.pricing-toggle {
  display: flex; justify-content: center; gap: 4px;
  background: var(--surface-container); border: 1px solid var(--outline-variant);
  border-radius: 100px; padding: 5px; max-width: 380px; margin: 0 auto 48px;
}
.pricing-toggle__btn {
  flex: 1; border: none; background: transparent; cursor: pointer;
  font-family: var(--font); font-size: 0.92rem; font-weight: 600; color: var(--ink-soft);
  padding: 11px 18px; border-radius: 100px; transition: background 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}
.pricing-toggle__btn.is-active { background: var(--white); color: var(--primary); box-shadow: var(--shadow-sm); }
.pricing-toggle__btn:not(.is-active):hover { color: var(--secondary); }

.pricing-panel[hidden] { display: none; }
.pricing-note {
  text-align: center; color: var(--ink-soft); font-size: 0.94rem;
  max-width: 560px; margin: 32px auto 0;
}
.price-card__unit {
  font-size: 0.88rem; font-weight: 600; color: var(--secondary);
  margin: -18px 0 22px;
}
.price-card__unit--light { color: var(--mint); }
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; align-items: stretch; }
.pricing--packs { align-items: stretch; }
.price-card {
  background: var(--white); border: 1px solid var(--outline-variant);
  border-radius: var(--radius-lg); padding: 40px 34px;
  display: flex; flex-direction: column; position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card h3 { font-size: 1.3rem; }
.price-card__desc { color: var(--ink-soft); font-size: 0.92rem; margin: 4px 0 22px; }
.price-card__price { font-size: 3.2rem; font-weight: 800; letter-spacing: -0.03em; line-height: 1; margin-bottom: 26px; }
.price-card__price small { font-size: 1.2rem; font-weight: 600; vertical-align: super; margin-right: 2px; }
.price-card__price span { font-size: 1rem; font-weight: 500; color: var(--ink-soft); letter-spacing: 0; }
.price-card .checklist { flex: 1; margin-bottom: 28px; }
.price-card .checklist li { font-size: 0.95rem; padding-top: 7px; padding-bottom: 7px; }

.price-card--featured {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-container) 100%);
  color: var(--white); border-color: transparent;
  transform: scale(1.04);
  box-shadow: var(--shadow-lg);
}
.price-card--featured:hover { transform: scale(1.04) translateY(-6px); }
.price-card--featured .price-card__desc { color: rgba(255, 255, 255, 0.65); }
.price-card--featured .price-card__price span { color: rgba(255, 255, 255, 0.6); }
.price-card__tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--mint); color: var(--primary);
  font-size: 0.75rem; font-weight: 800; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 6px 18px; border-radius: 100px; white-space: nowrap;
  box-shadow: 0 6px 16px -4px rgba(146, 247, 195, 0.5);
}

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--white); border: 1px solid var(--outline-variant);
  border-radius: var(--radius); padding: 0 28px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq__item[open] { border-color: rgba(0, 108, 72, 0.4); box-shadow: var(--shadow-sm); }
.faq__item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-weight: 600; font-size: 1.05rem; padding: 22px 0; cursor: pointer; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus { position: relative; width: 22px; height: 22px; flex-shrink: 0; }
.faq__plus::before, .faq__plus::after {
  content: ""; position: absolute; background: var(--secondary); border-radius: 2px;
  transition: transform 0.3s ease;
}
.faq__plus::before { width: 14px; height: 2px; top: 10px; left: 4px; }
.faq__plus::after { width: 2px; height: 14px; top: 4px; left: 10px; }
.faq__item[open] .faq__plus::after { transform: rotate(90deg); }
.faq__item p { color: var(--ink-soft); padding-bottom: 24px; font-size: 1rem; }

/* ---------- CTA final ---------- */
.cta-final {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(160deg, #01261a 0%, var(--primary) 50%, #0a3d2a 100%);
  color: var(--white); border-radius: 36px; padding: 90px 40px;
}
.cta-final__glow {
  position: absolute; width: 500px; height: 500px; border-radius: 50%;
  background: rgba(146, 247, 195, 0.14); filter: blur(110px);
  top: -200px; left: 50%; transform: translateX(-50%); pointer-events: none;
}
.cta-final h2 { position: relative; max-width: 640px; margin: 0 auto 16px; }
.cta-final h2 em { color: var(--mint); }
.cta-final p { position: relative; color: rgba(255, 255, 255, 0.72); font-size: 1.12rem; margin-bottom: 38px; }
.cta-final__badges { position: relative; display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #011f15; color: rgba(255, 255, 255, 0.7); padding: 70px 0 0; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px;
}
.footer__brand p { margin-top: 16px; font-size: 0.95rem; max-width: 300px; }
.footer__brand img { border-radius: 10px; }
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__col h3 { color: var(--white); font-size: 0.95rem; margin-bottom: 6px; }
.footer__col a { font-size: 0.92rem; transition: color 0.2s ease; }
.footer__col a:hover { color: var(--mint); }
.footer__disclaimer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px; font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); line-height: 1.6;
  scroll-margin-top: 100px;
}
.footer__bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 24px 0; font-size: 0.85rem;
}

/* ============================================================
   WHATSAPP FLUTUANTE
   ============================================================ */
.whatsapp-float {
  position: fixed; right: 24px; bottom: 24px; z-index: 500;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.6s ease-out infinite;
}
.whatsapp-float svg { width: 32px; height: 32px; }
.whatsapp-float:hover { transform: scale(1.08); background: #22c15e; }
@keyframes waPulse {
  0% { box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.55); }
  70% { box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.4), 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 28px -6px rgba(0, 0, 0, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}
@media (max-width: 760px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* ============================================================
   ANIMAÇÕES DE SCROLL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal--visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__content { display: flex; flex-direction: column; align-items: center; }
  .hero__sub { max-width: 560px; }
  .hero__ctas, .hero__stats { justify-content: center; }
  .hero__mockup { margin-top: 24px; }
  .float-card--2 { left: 0; }
  .bento { grid-template-columns: 1fr 1fr; }
  .bento__card--large { grid-column: span 2; grid-row: auto; }
  .steps { grid-template-columns: 1fr; }
  .step__arrow { transform: rotate(90deg); justify-self: center; }
  .testimonials, .pricing { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
  .price-card--featured { transform: none; }
  .price-card--featured:hover { transform: translateY(-6px); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .section { padding: 72px 0; }
  .hero { padding-top: 120px; }
  .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; gap: 28px;
    background: rgba(1, 38, 26, 0.97); backdrop-filter: blur(20px);
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  }
  .nav__links.open { opacity: 1; pointer-events: auto; z-index: 99; }
  .nav__links a:not(.btn) { font-size: 1.3rem; color: var(--white); }
  .nav__cta-mobile { display: inline-flex; }
  .bento { grid-template-columns: 1fr; }
  .bento__card--large { grid-column: auto; }
  .audience { grid-template-columns: 1fr; }
  .audience__card { padding: 32px 26px; }
  .phone { width: 280px; height: 580px; }
  .float-card { max-width: 200px; padding: 10px 12px; }
  .float-card--1 { right: -2%; }
  .float-card--2 { left: -2%; bottom: 30%; }
  .hero__stats { gap: 24px; }
  .cta-final { padding: 64px 24px; border-radius: 28px; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
}

/* ============================================================
   BLOG — páginas internas
   Reaproveita nav, footer, .container e .btn da home. Só o que é exclusivo
   das páginas internas vive aqui.
   ============================================================ */

/* A nav é fixa e transparente, feita para flutuar sobre o hero escuro. Numa
   página interna não há hero, então o cabeçalho do blog assume esse papel:
   fundo escuro e padding-top suficiente para o conteúdo não passar por baixo
   da nav. Sem isso o texto branco da nav cairia sobre fundo claro e sumiria. */
.blog-cabecalho {
  background: linear-gradient(160deg, #01261a 0%, var(--primary) 55%, #0a3d2a 100%);
  color: var(--white);
  padding: 140px 0 56px;
}
.blog-cabecalho h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-top: 14px; }
.blog-cabecalho__sub {
  margin-top: 16px; font-size: 1.08rem; line-height: 1.6;
  color: rgba(255, 255, 255, 0.78); max-width: 58ch;
}

/* Trilha de navegação. O mesmo caminho está marcado em JSON-LD (BreadcrumbList)
   no <head>: o visual é para o leitor, a marcação é para o buscador. */
.migalhas { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: rgba(255, 255, 255, 0.6); }
.migalhas a { color: var(--mint); }
.migalhas a:hover { text-decoration: underline; }

.blog-lista { padding: 64px 0 96px; }

.post-card { border-bottom: 1px solid var(--outline-variant); }
.post-card:first-child { border-top: 1px solid var(--outline-variant); }
.post-card__link { display: block; padding: 32px 0; transition: opacity 0.2s ease; }
.post-card__link:hover { opacity: 0.72; }
.post-card__link:hover .post-card__titulo { color: var(--secondary); }
.post-card__meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.82rem; color: var(--outline); letter-spacing: 0.02em;
}
.post-card__titulo { font-size: 1.5rem; font-weight: 700; line-height: 1.25; margin-top: 10px; transition: color 0.2s ease; }
.post-card__resumo { margin-top: 10px; color: var(--ink-soft); line-height: 1.6; }
.post-card__cta { display: inline-block; margin-top: 14px; font-weight: 600; color: var(--secondary); font-size: 0.95rem; }

.blog-vazio {
  border: 1px dashed var(--outline-variant); border-radius: var(--radius);
  padding: 48px 32px; text-align: center; color: var(--ink-soft);
}
.blog-vazio__titulo { font-size: 1.25rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.blog-vazio .btn { margin-top: 24px; }

/* O rodapé interno não traz a coluna "Legal", então a grade de 4 colunas da
   home viraria um buraco à direita. */
.pagina-interna .footer__grid { grid-template-columns: 1.6fr 1fr 1fr; }

/* ---------- Corpo de artigo ---------- */
.post-corpo { padding: 56px 0 96px; }
.post-corpo > * + * { margin-top: 20px; }
.post-corpo h2 { font-size: 1.75rem; margin-top: 44px; }
.post-corpo h3 { font-size: 1.3rem; margin-top: 32px; }
.post-corpo p, .post-corpo li { color: var(--ink-soft); line-height: 1.75; font-size: 1.05rem; }
.post-corpo ul, .post-corpo ol { padding-left: 22px; }
.post-corpo ul li { list-style: disc; margin-top: 8px; }
.post-corpo ol li { list-style: decimal; margin-top: 8px; }
.post-corpo a { color: var(--secondary); text-decoration: underline; text-underline-offset: 3px; }
.post-corpo blockquote {
  border-left: 3px solid var(--mint-dark); padding: 4px 0 4px 20px;
  color: var(--ink); font-style: italic;
}

/* ---------- Chamada do blog na home ---------- */
.blog-chamada { padding: 88px 0; background: var(--surface-low); }
.blog-chamada__topo { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: 32px; }
.blog-chamada__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; }
.blog-chamada__card {
  display: block; background: var(--white); border: 1px solid var(--outline-variant);
  border-radius: var(--radius); padding: 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.blog-chamada__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.blog-chamada__card h3 { font-size: 1.15rem; line-height: 1.3; margin-top: 8px; }
.blog-chamada__card p { margin-top: 8px; color: var(--ink-soft); font-size: 0.95rem; line-height: 1.55; }

/* Variante da chamada usada no fim das páginas de artigo: título, uma linha de
   texto e o botão. O respiro antes do botão é maior que o de um parágrafo
   comum — colado no texto ele parece parte da frase, não uma ação. */
.blog-chamada__texto { margin-top: 14px; color: var(--ink-soft); line-height: 1.6; }
.blog-chamada__acao { margin-top: 32px; }

@media (max-width: 960px) {
  .pagina-interna .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .blog-cabecalho { padding: 116px 0 44px; }
  .blog-lista { padding: 48px 0 72px; }
  .pagina-interna .footer__grid { grid-template-columns: 1fr; }
}

/* O menu passou a ter 6 itens com a entrada do Blog. No intervalo entre 760px
   e ~960px eles já não cabem ao lado da marca e do botão de CTA, então a
   troca para o menu-gaveta sobe para 960px. As mesmas regras existem no bloco
   de 760px acima; aqui elas só entram em vigor mais cedo. */
@media (max-width: 960px) {
  .nav__actions .btn { display: none; }
  .nav__toggle { display: flex; }
  .nav__links {
    position: fixed; inset: 0; z-index: -1;
    flex-direction: column; justify-content: center; gap: 28px;
    background: rgba(1, 38, 26, 0.97); backdrop-filter: blur(20px);
    opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
  }
  .nav__links.open { opacity: 1; pointer-events: auto; z-index: 99; }
  .nav__links a:not(.btn) { font-size: 1.3rem; color: var(--white); }
  .nav__cta-mobile { display: inline-flex; }
}
