/* =========================================================
   HortiControl · Landing page
   Cores seguem a identidade do sistema (verde-petróleo + dourado)
   ========================================================= */

:root {
  --teal-950: #042824;
  --teal-900: #06302c;
  --teal-800: #07463f;
  --teal-700: #07645d;
  --teal-600: #098479;
  --teal-500: #13a393;
  --teal-100: #d6ece8;
  --teal-50: #edf5f4;

  --gold-500: #d49a2f;
  --gold-600: #b97e1f;
  --gold-200: #f0c36a;

  --ink: #10201e;
  --text: #2c3b38;
  --muted: #5b6b68;
  --line: #dbe7e4;
  --bg: #f8fbfa;
  --surface: #ffffff;

  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 1px 2px rgba(6, 48, 44, .06), 0 8px 24px rgba(6, 48, 44, .08);
  --shadow-lg: 0 24px 60px rgba(4, 40, 36, .35);

  --font-head: "Plus Jakarta Sans", "Segoe UI", Roboto, Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Roboto, Arial, sans-serif;

  --header-h: 72px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--teal-600); }

h1, h2, h3 {
  font-family: var(--font-head);
  color: var(--ink);
  line-height: 1.15;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.2rem, 4.6vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.6rem); font-weight: 800; }
h3 { font-size: 1.15rem; font-weight: 700; letter-spacing: -.01em; }
p { margin: 0 0 1em; }

.container { width: min(1180px, 100% - 32px); margin-inline: auto; }

.skip {
  position: absolute; left: -9999px; top: 8px; z-index: 100;
  background: var(--ink); color: #fff; padding: 8px 14px; border-radius: 8px;
}
.skip:focus { left: 8px; }

:focus-visible { outline: 3px solid var(--gold-500); outline-offset: 3px; border-radius: 6px; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-head); font-weight: 700; font-size: 1rem;
  padding: .8em 1.4em; border-radius: 12px; border: 2px solid transparent;
  text-decoration: none; cursor: pointer; transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-sm { font-size: .92rem; padding: .55em 1.1em; }
.btn-lg { font-size: 1.06rem; padding: .95em 1.6em; }
.btn-block { width: 100%; }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: #fff;
  box-shadow: 0 6px 18px rgba(185, 126, 31, .35);
}
.btn-gold:hover { box-shadow: 0 10px 24px rgba(185, 126, 31, .45); }

.btn-ghost { color: #fff; border-color: rgba(255, 255, 255, .35); background: rgba(255, 255, 255, .06); }
.btn-ghost:hover { background: rgba(255, 255, 255, .14); }

.btn-outline { color: var(--teal-700); border-color: var(--teal-600); background: #fff; }
.btn-outline:hover { background: var(--teal-50); }

/* ---------- Cabeçalho ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(6, 48, 44, .06); }

.header-inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }
.brand img { height: 52px; width: auto; }

.nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.nav a { color: var(--text); text-decoration: none; font-weight: 500; font-size: .98rem; }
.nav a:hover { color: var(--teal-600); }
.nav-login { color: var(--teal-700) !important; font-weight: 600 !important; }

.menu-toggle {
  display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer;
  flex-direction: column; justify-content: center; align-items: center; gap: 5px; margin-left: 4px;
}
.menu-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .2s, opacity .2s; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  color: #d9eeea;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(212, 154, 47, .18), transparent 60%),
    radial-gradient(800px 600px at 0% 100%, rgba(19, 163, 147, .25), transparent 60%),
    linear-gradient(160deg, var(--teal-800), var(--teal-950));
  padding: clamp(56px, 8vw, 104px) 0 clamp(64px, 8vw, 112px);
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: 56px; align-items: center;
}
.hero h1 { color: #fff; }
.lead { font-size: 1.15rem; color: #c3e0da; max-width: 36em; }

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 24px; }

.hero-checks { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; font-size: .96rem; }
.hero-checks li { display: flex; align-items: center; gap: 10px; }
.hero-checks li::before,
.ticks li::before {
  content: ""; flex: none; width: 20px; height: 20px; border-radius: 50%;
  background: var(--teal-500) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center / 13px no-repeat;
}

.hero-visual img {
  border-radius: 16px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, .08);
  transform: perspective(1600px) rotateY(-6deg) rotateX(2deg);
  transform-origin: left center;
}

.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: .82rem;
  text-transform: uppercase; letter-spacing: .12em; color: var(--teal-600); margin-bottom: 14px;
}

/* ---------- Público ---------- */
.audience { background: #fff; border-bottom: 1px solid var(--line); padding: 26px 0; }
.audience .container { display: flex; align-items: center; justify-content: space-between; gap: 16px 32px; flex-wrap: wrap; }
.audience p { margin: 0; font-weight: 600; color: var(--muted); font-size: .95rem; }
.audience ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.audience li {
  font-size: .9rem; font-weight: 500; color: var(--teal-800);
  background: var(--teal-50); border: 1px solid var(--teal-100);
  padding: 6px 14px; border-radius: 999px;
}

/* ---------- Seções ---------- */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head p:last-child { color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }

/* Dores */
.pains { background: var(--bg); }
.pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pain {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
}
.pain p { color: var(--muted); margin: 0; }
.pain-icon {
  display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px;
  background: #fdf1dc; margin-bottom: 18px;
}
.pain-icon svg, .f-icon svg {
  width: 24px; height: 24px; fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.pain-icon svg { stroke: var(--gold-600); }

/* Recursos */
.features { background: #fff; }
.feature-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.feature {
  padding: 24px; border-radius: var(--radius); border: 1px solid var(--line); background: var(--bg);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.feature:hover { border-color: var(--teal-100); transform: translateY(-3px); box-shadow: var(--shadow); background: #fff; }
.feature p { color: var(--muted); font-size: .95rem; margin: 0; }
.f-icon {
  display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700)); margin-bottom: 16px;
}
.f-icon svg { stroke: #fff; }

/* Destaques */
.spotlight { background: linear-gradient(180deg, var(--teal-50), var(--bg)); display: grid; gap: clamp(64px, 9vw, 112px); }
.spot { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr); gap: 64px; align-items: center; }
.spot-reverse .spot-copy { order: 2; }
.spot-copy > p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.ticks { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.ticks li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--ink); }
.ticks li::before { background-color: var(--teal-600); }

/* Como funciona */
.steps-section { background: #fff; }
.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; counter-reset: s;
  position: relative;
}
.steps li {
  position: relative; padding: 32px 28px; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--line);
}
.steps p { color: var(--muted); margin: 0; }
.step-n {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%;
  font-family: var(--font-head); font-weight: 800; font-size: 1.25rem;
  background: var(--gold-500); color: #fff; margin-bottom: 18px;
  box-shadow: 0 0 0 6px #fdf1dc;
}

/* Origem */
.origin { background: var(--teal-50); }
.origin-inner { display: grid; grid-template-columns: 160px 1fr; gap: 48px; align-items: center; max-width: 920px; }
.origin-inner > div > p:last-of-type { color: var(--muted); font-size: 1.08rem; margin: 0; }

/* Planos */
.pricing { background: #fff; }
.plan {
  position: relative; display: flex; flex-direction: column;
  padding: 32px 28px; border-radius: 20px; border: 1px solid var(--line); background: var(--bg);
}
.plan h3 { font-size: 1.35rem; margin-bottom: .3em; }
.plan-desc { color: var(--muted); font-size: .95rem; min-height: 3em; }
.price { display: flex; align-items: baseline; gap: 4px; margin: 8px 0 20px; color: var(--ink); font-family: var(--font-head); }
.price .currency { font-size: 1.1rem; font-weight: 700; }
.price .value { font-size: 2.8rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; }
.price .period { color: var(--muted); font-family: var(--font-body); font-size: .95rem; }
.plan ul { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 10px; flex: 1; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: .96rem; }
.plan li::before { content: "✓"; color: var(--teal-600); font-weight: 800; }
.plan-featured {
  background: linear-gradient(170deg, var(--teal-700), var(--teal-900)); border-color: transparent;
  color: #cfe7e3; box-shadow: var(--shadow-lg); transform: translateY(-8px);
}
.plan-featured h3, .plan-featured .price { color: #fff; }
.plan-featured .plan-desc, .plan-featured .price .period { color: #a9cfc8; }
.plan-featured li::before { color: var(--gold-200); }
.plan-badge {
  position: absolute; top: -13px; left: 28px; margin: 0;
  background: var(--gold-500); color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; padding: 4px 12px; border-radius: 999px;
}

/* FAQ */
.faq { background: var(--bg); }
.faq-inner { display: grid; grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr); gap: 56px; align-items: start; }
.faq .section-head { text-align: left; margin: 0; position: sticky; top: calc(var(--header-h) + 24px); }
.faq-list { display: grid; gap: 12px; }
.faq details {
  background: #fff; border: 1px solid var(--line); border-radius: 14px; padding: 0 22px;
  transition: box-shadow .2s ease;
}
.faq details[open] { box-shadow: var(--shadow); }
.faq summary {
  list-style: none; cursor: pointer; padding: 20px 32px 20px 0; position: relative;
  font-family: var(--font-head); font-weight: 700; color: var(--ink);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 0; top: 50%; width: 12px; height: 12px; margin-top: -8px;
  border-right: 2.5px solid var(--teal-600); border-bottom: 2.5px solid var(--teal-600);
  transform: rotate(45deg); transition: transform .2s ease;
}
.faq details[open] summary::after { transform: rotate(-135deg); margin-top: -2px; }
.faq details p { color: var(--muted); margin: 0 0 20px; }

/* CTA final */
.final-cta {
  color: #cfe7e3; text-align: center;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(212, 154, 47, .2), transparent 70%),
    linear-gradient(160deg, var(--teal-700), var(--teal-950));
  padding: clamp(64px, 9vw, 104px) 0;
}
.final-inner { max-width: 760px; }
.final-cta h2 { color: #fff; }
.final-cta p { font-size: 1.12rem; }
.final-cta .hero-actions { justify-content: center; margin-bottom: 0; }

/* Rodapé */
.site-footer { background: var(--teal-950); color: #9dbdb7; padding: 56px 0 24px; font-size: .95rem; }
.footer-inner { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 40px; }
.footer-brand img { height: 64px; width: auto; background: #fff; border-radius: 12px; padding: 6px 10px; margin-bottom: 16px; }
.footer-brand p { max-width: 30em; }
.footer-nav { display: grid; gap: 8px; align-content: start; }
.footer-nav h3 { color: #fff; font-size: 1rem; margin-bottom: 6px; }
.footer-nav a { color: #9dbdb7; text-decoration: none; overflow-wrap: anywhere; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 40px; padding-top: 20px; font-size: .85rem; }
.footer-bottom p { margin: 0; }

/* WhatsApp flutuante */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 60;
  width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center;
  background: #25d366; box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  transition: transform .15s ease;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; fill: #fff; }

/* Animação de entrada */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.plan-featured.reveal.visible { transform: translateY(-8px); }

/* ---------- Responsivo ---------- */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  .nav {
    position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 16px 30px rgba(6, 48, 44, .1);
    padding: 8px 16px 16px; transform: translateY(-8px); opacity: 0; visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility .2s;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav a:last-child { border-bottom: 0; }
  .header-cta { margin-left: auto; }
  .menu-toggle { display: flex; }

  .hero-inner, .spot, .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual img { transform: none; }
  .spot-reverse .spot-copy { order: 0; }
  .faq .section-head { position: static; }

  .pain-grid, .steps { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .plan-featured, .plan-featured.reveal.visible { transform: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand img { height: 44px; }
  .header-inner { gap: 12px; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; }
  .audience .container { justify-content: flex-start; }
  .origin-inner { grid-template-columns: 1fr; gap: 20px; }
  .origin-mark { width: 96px; }
  .footer-inner { grid-template-columns: 1fr; }
  .wa-float { width: 52px; height: 52px; right: 14px; bottom: 14px; }
}

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

/* Plano único */
.plan-single {
  max-width: 920px; margin-inline: auto; transform: none;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: center;
  padding: 44px 40px;
}
.plan-single.reveal.visible { transform: none; }
.plan-single .plan-desc { min-height: 0; }
.plan-single .price .value { font-size: 3.4rem; }
.plan-single ul { margin: 0; }
@media (max-width: 920px) {
  .plan-single { grid-template-columns: 1fr; gap: 28px; padding: 40px 24px 32px; }
}
.plan-note {
  font-size: .88rem; color: #a9cfc8; margin: -8px 0 20px;
  padding-left: 12px; border-left: 3px solid var(--gold-500);
}

/* Linha de palavra-chave dentro do H1 */
.h1-kicker {
  display: block; margin-bottom: 14px;
  font-size: .82rem; font-size: clamp(.8rem, 1.1vw, .9rem); font-weight: 700; line-height: 1.4;
  letter-spacing: .12em; text-transform: uppercase; color: var(--gold-200);
}

/* ---------- Copy persuasiva ---------- */
.hero-risk { margin: -8px 0 20px; font-size: .92rem; font-weight: 600; color: var(--gold-200); letter-spacing: .01em; }

.math {
  margin: 28px auto 0; max-width: 820px; text-align: center;
  background: #fff; border: 2px dashed var(--gold-500); border-radius: var(--radius);
  padding: 24px 28px;
}
.math p { margin: 0; font-size: 1.1rem; color: var(--ink); }
.math .math-label {
  font-family: var(--font-head); font-weight: 800; font-size: .8rem; text-transform: uppercase;
  letter-spacing: .12em; color: var(--gold-600); margin-bottom: 8px;
}
.math strong { color: var(--teal-700); }

.objections { background: linear-gradient(180deg, var(--bg), var(--teal-50)); }
.objection-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.objection {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 26px 24px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 14px;
}
.obj-q {
  margin: 0; position: relative; padding-left: 16px;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; line-height: 1.4; color: var(--ink);
  border-left: 3px solid var(--gold-500);
}
.obj-a { margin: 0; color: var(--muted); font-size: .96rem; }
.obj-a strong { color: var(--teal-700); }
.obj-cta { text-align: center; margin-top: 40px; }
.obj-cta p { font-size: 1.1rem; font-weight: 600; color: var(--ink); }

.plan-daily { font-size: .95rem; color: #fff; font-weight: 600; margin: -10px 0 12px; }
.plan-risk { text-align: center; font-size: .86rem; color: #a9cfc8; margin: 12px 0 0; }

@media (max-width: 1080px) { .objection-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .objection-grid { grid-template-columns: 1fr; } }

/* Depoimento */
.testimonial { background: var(--teal-50); padding-top: 0; }
.quote {
  position: relative; margin: 0 auto; max-width: 860px;
  background: #fff; border-radius: 20px; box-shadow: var(--shadow);
  padding: 48px 48px 36px; border-top: 4px solid var(--gold-500);
}
.quote-mark { position: absolute; top: -18px; left: 40px; width: 48px; height: 36px; fill: var(--gold-500); }
.quote blockquote { margin: 0 0 28px; }
.quote blockquote p {
  margin: 0; font-family: var(--font-head); font-weight: 600; font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55; color: var(--ink); letter-spacing: -.01em;
}
.quote figcaption { display: flex; align-items: center; gap: 14px; color: var(--muted); font-size: .95rem; line-height: 1.4; }
.quote figcaption strong { color: var(--ink); font-size: 1.02rem; }
.quote-avatar {
  display: grid; place-items: center; flex: none; width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-700)); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 1.2rem;
}
@media (max-width: 560px) { .quote { padding: 40px 22px 28px; } .quote-mark { left: 22px; } }

/* Fala do criador */
.founder-quote { margin: 24px 0 0; padding: 20px 24px; background: #fff; border-left: 4px solid var(--gold-500); border-radius: 0 14px 14px 0; box-shadow: var(--shadow); }
.founder-quote blockquote { margin: 0 0 10px; }
.founder-quote blockquote p { margin: 0; font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; line-height: 1.55; color: var(--ink); }
.founder-quote figcaption { font-size: .92rem; color: var(--muted); }
.founder-quote figcaption strong { color: var(--teal-700); }

/* Prova social no hero */
.hero-proof {
  display: flex; align-items: center; gap: 12px; margin-top: 24px; max-width: 34em;
  padding: 12px 16px; border-radius: 14px; text-decoration: none;
  background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .14);
  color: #d9eeea; font-size: .92rem; line-height: 1.45; font-style: italic;
  transition: background .15s ease;
}
.hero-proof:hover { background: rgba(255, 255, 255, .12); }
.hero-proof strong { font-style: normal; font-weight: 600; color: var(--gold-200); font-size: .86rem; }
.hero-proof-avatar {
  display: grid; place-items: center; flex: none; width: 40px; height: 40px; border-radius: 50%;
  background: var(--gold-500); color: #fff; font-family: var(--font-head); font-weight: 800; font-style: normal;
}
.testimonial-eyebrow { text-align: center; margin-bottom: 32px; }

/* Topo compacto */
.hero { padding-top: clamp(40px, 5vw, 72px); padding-bottom: clamp(56px, 6vw, 88px); }
.hero h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); }
.hero .lead { font-size: 1.08rem; margin-bottom: 0; }
.hero-actions-main { align-items: center; gap: 20px; margin: 24px 0 10px; }
.hero-link { color: #fff; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 2px; }
.hero-link:hover { border-color: #fff; }
.hero-risk { margin: 0 0 18px; }
@media (max-width: 560px) { .hero-actions-main { flex-direction: column; align-items: stretch; text-align: center; } .hero-link { align-self: center; } }

/* Aviso de cookies */
.cookie {
  position: fixed; right: 88px; bottom: 20px; z-index: 70; max-width: 420px;
  background: #fff; color: var(--text); border: 1px solid var(--line); border-radius: 16px;
  box-shadow: 0 16px 40px rgba(6, 48, 44, .18); padding: 18px 20px; font-size: .92rem;
}
.cookie[hidden] { display: none; }
.cookie p { margin: 0 0 14px; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; }
@media (max-width: 560px) { .cookie { left: 12px; right: 76px; bottom: 12px; padding: 14px 16px; } .cookie-actions .btn { flex: 1; } }

/* Página de privacidade */
.legal { padding: 56px 0 80px; }
.legal .container { max-width: 760px; }
.legal h1 { font-size: clamp(1.8rem, 3.5vw, 2.4rem); }
.legal h2 { font-size: 1.25rem; margin-top: 2em; }
.legal p, .legal li { color: var(--text); }
