/* =====================================================================
   Gregori Martins v2 — Seguro de vida, explicado com calma
   Direção: editorial, luminoso, acolhedor (referência Ethos)
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --ice:        #F4F7FA;
  --white:      #FFFFFF;
  --royal:      #0F3A5E;   /* primária: títulos, nav, marca */
  --ink-strong: #0B2C49;
  --gold:       #D68A2C;   /* ação */
  --on-gold:    #2A1B06;
  --gold-title: #C7912F;   /* palavra de destaque no título */
  --text:       #16283A;
  --text-2:     #54626F;

  --line: rgba(15, 58, 94, 0.10);

  --display: 'DM Serif Display', Georgia, 'Times New Roman', serif;  /* títulos grandes: impacto */
  --heading: 'Newsreader', Georgia, 'Times New Roman', serif;        /* títulos menores: caloroso */
  --brand:   'Fraunces', Georgia, 'Times New Roman', serif;        /* nome da marca (serifa elegante) */
  --sans:    'Inter', system-ui, -apple-system, sans-serif;         /* corpo limpo */

  --maxw: 1200px;
  --pad: clamp(1.25rem, 5vw, 3.25rem);

  --r-sm: 14px;
  --r-md: 22px;
  --r-lg: 30px;
  --r-pill: 100px;

  --shadow-sm: 0 1px 2px rgba(15,58,94,0.05), 0 6px 16px -8px rgba(15,58,94,0.10);
  --shadow-md: 0 10px 30px -14px rgba(15,58,94,0.22);
  --shadow-lg: 0 40px 80px -30px rgba(15,58,94,0.35);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--ice);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.005em;
  color: var(--royal);
  margin: 0;
  font-optical-sizing: auto;
}
h3 {
  font-family: var(--heading);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--royal);
  margin: 0;
  font-optical-sizing: auto;
}
/* Palavra de destaque nos títulos: itálico dourado da DM Serif, toque editorial */
.hl { color: var(--gold-title); font-style: italic; }

::selection { background: var(--gold); color: var(--on-gold); }

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 200;
  background: var(--royal); color: #fff; padding: 0.7rem 1.1rem;
  border-radius: 0 0 10px 0; font-weight: 600; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding-inline: var(--pad); }

/* ---------- Marca ---------- */
.brand { display: inline-flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.brand__mono {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(150deg, #12456e, #0F3A5E);
  color: var(--gold);
  font-family: var(--display); font-weight: 700; font-size: 1.02rem;
  letter-spacing: 0.01em;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.06), var(--shadow-sm);
}
.brand__lockup { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--brand); font-weight: 600;
  font-size: 1.3rem; line-height: 1; color: var(--royal);
  letter-spacing: -0.01em; white-space: nowrap;
}
.brand__sub {
  font-family: var(--sans); font-weight: 600; font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-2); margin-top: 4px; white-space: nowrap;
}
.brand--footer .brand__sub { color: rgba(255,255,255,0.6); }
.brand__dot {
  display: inline-block; width: 0.32em; height: 0.32em;
  border-radius: 50%; background: var(--gold);
  margin-left: 0.12em; vertical-align: 0.12em;
}

/* ---------- Botões ---------- */
.btn {
  --py: 0.8rem; --px: 1.4rem;
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
  padding: var(--py) var(--px);
  font-family: var(--sans); font-weight: 600; font-size: 0.98rem;
  text-decoration: none; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background-color .3s var(--ease), border-color .3s var(--ease), color .3s var(--ease);
}
.btn--lg { --py: 1.05rem; --px: 1.9rem; font-size: 1.03rem; }
.btn--gold { background: var(--gold); color: var(--on-gold); box-shadow: 0 12px 26px -12px rgba(214,138,44,0.75); }
.btn--gold:hover { background: #e29639; transform: translateY(-2px); box-shadow: 0 18px 34px -12px rgba(214,138,44,0.85); }
.btn--outline { background: transparent; color: var(--royal); border-color: rgba(15,58,94,0.28); }
.btn--outline:hover { border-color: var(--royal); background: rgba(15,58,94,0.04); transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Ícone WhatsApp */
.wa-icon {
  width: 1.15em; height: 1.15em; flex: 0 0 auto; background: currentColor;
  -webkit-mask: var(--wa) center / contain no-repeat; mask: var(--wa) center / contain no-repeat;
  --wa: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12.04 2C6.58 2 2.13 6.45 2.13 11.91c0 1.75.46 3.45 1.32 4.95L2 22l5.25-1.38c1.45.79 3.08 1.21 4.79 1.21 5.46 0 9.91-4.45 9.91-9.91S17.5 2 12.04 2zm0 18.15c-1.52 0-3.01-.41-4.31-1.18l-.31-.18-3.12.82.83-3.04-.2-.31a8.2 8.2 0 0 1-1.26-4.35c0-4.54 3.7-8.24 8.25-8.24 2.2 0 4.27.86 5.83 2.42a8.18 8.18 0 0 1 2.41 5.83c0 4.54-3.7 8.24-8.25 8.24zm4.52-6.16c-.25-.12-1.47-.72-1.69-.81-.23-.08-.39-.12-.56.12-.16.25-.64.81-.79.97-.14.17-.29.19-.54.06-.25-.12-1.05-.39-1.99-1.23-.74-.66-1.23-1.47-1.38-1.72-.14-.25-.02-.38.11-.51.11-.11.25-.29.37-.43.12-.14.16-.25.25-.41.08-.17.04-.31-.02-.43-.06-.12-.56-1.34-.76-1.84-.2-.48-.41-.42-.56-.43-.14-.01-.31-.01-.48-.01-.17 0-.43.06-.66.31-.23.25-.87.85-.87 2.07 0 1.22.89 2.4 1.01 2.56.12.17 1.75 2.67 4.23 3.74.59.26 1.05.41 1.41.52.59.19 1.13.16 1.56.1.48-.07 1.47-.6 1.68-1.18.21-.58.21-1.07.14-1.18-.06-.11-.22-.17-.47-.29z'/%3E%3C/svg%3E");
}

/* ---------- Eyebrow ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--line);
  color: var(--royal); font-weight: 600; font-size: 0.9rem;
  padding: 0.42rem 0.9rem; border-radius: var(--r-pill);
  margin: 0 0 1.5rem; backdrop-filter: blur(4px);
}
.eyebrow__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; }
.eyebrow .flags { display: inline-flex; align-items: center; gap: 5px; flex: 0 0 auto; }
.flag { display: inline-block; width: 22px; height: 15px; border-radius: 3px; overflow: hidden; box-shadow: 0 0 0 1px rgba(15,58,94,0.14); flex: 0 0 auto; }
.flag svg { display: block; width: 100%; height: 100%; }

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background-color .3s var(--ease);
}
.nav.is-scrolled { box-shadow: var(--shadow-sm); border-bottom-color: var(--line); background: rgba(255,255,255,0.94); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 78px; }

.nav__links { display: flex; gap: 2.1rem; }
.nav__links a {
  text-decoration: none; color: var(--text); font-weight: 500; font-size: 1rem;
  position: relative; padding: 0.25rem 0; transition: color .25s var(--ease);
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--gold); border-radius: 2px; transition: width .3s var(--ease);
}
.nav__links a:hover { color: var(--royal); }
.nav__links a:hover::after { width: 100%; }

.nav__cta { --py: 0.6rem; --px: 1.15rem; font-size: 0.92rem; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px; width: 46px; height: 46px;
  align-items: center; justify-content: center; background: var(--white);
  border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
}
.nav__toggle span { width: 20px; height: 2px; background: var(--royal); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.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); }

.nav__mobile {
  display: flex; flex-direction: column; gap: 1.2rem;
  padding: 1.5rem var(--pad) 2rem; background: var(--white);
  border-top: 1px solid var(--line); box-shadow: var(--shadow-md);
}
.nav__mobile a { text-decoration: none; color: var(--royal); font-weight: 500; font-size: 1.15rem; }
.nav__mobile .btn { justify-content: center; }
/* Respeita o atributo hidden: no mobile o menu fica recolhido por padrão e só abre no toque do hambúrguer */
.nav__mobile[hidden] { display: none; }

/* =====================================================================
   HERÓI
   ===================================================================== */
.hero { padding: clamp(1.5rem, 4vw, 2.75rem) 0 clamp(3rem, 7vw, 5rem); }
.hero__frame {
  position: relative; border-radius: var(--r-lg); overflow: hidden;
  min-height: clamp(540px, 68vh, 700px);
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.hero__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 72% 42%; z-index: -2; }
.hero__scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(90deg, rgba(244,247,250,0.96) 0%, rgba(244,247,250,0.88) 34%, rgba(244,247,250,0.35) 58%, rgba(244,247,250,0) 78%);
}
.hero__content {
  position: relative; max-width: 560px;
  padding: clamp(2rem, 5vw, 4rem);
  min-height: inherit; display: flex; flex-direction: column; justify-content: center;
}
.hero__title { font-size: clamp(2.6rem, 6vw, 4.7rem); font-weight: 400; letter-spacing: -0.005em; }
.hero__sub { font-size: clamp(1.08rem, 1.8vw, 1.3rem); color: var(--text); max-width: 40ch; margin: 1.5rem 0 2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 0.9rem; }
.hero__seal {
  display: inline-flex; align-items: center; gap: 0.6rem;
  margin: 1.9rem 0 0; color: var(--text-2); font-weight: 500; font-size: 0.96rem;
}
.check {
  width: 22px; height: 22px; flex: 0 0 auto; border-radius: 50%;
  background: rgba(214,138,44,0.16); position: relative;
}
.check::after {
  content: ""; position: absolute; left: 7px; top: 4px; width: 5px; height: 10px;
  border: solid var(--gold); border-width: 0 2.5px 2.5px 0; transform: rotate(45deg);
}

/* =====================================================================
   SEÇÕES INTERNAS (base)
   ===================================================================== */
.section { padding: clamp(3.5rem, 8vw, 7rem) 0; }
.section-title { font-size: clamp(2rem, 4.6vw, 3.2rem); max-width: 18ch; }

/* ---------- O que é ---------- */
.whatis { background: var(--white); }
.whatis__grid {
  display: grid; grid-template-columns: 1.2fr 0.9fr;
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}
.whatis__text {
  font-size: clamp(1.08rem, 1.5vw, 1.24rem); line-height: 1.75;
  color: var(--text); margin: 1.6rem 0 0; max-width: 54ch;
}
.whatis__aside.reveal { transition-delay: .12s; }

.support-card {
  background: linear-gradient(160deg, #12456e, #0e3350);
  color: rgba(255,255,255,0.9);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
  padding: clamp(1.5rem, 3vw, 2.1rem);
}
.support-card__label { font-family: var(--heading); font-weight: 600; font-size: 1.2rem; color: #fff; margin: 0 0 0.3rem; }
.support-card__hint { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin: 0 0 1.1rem; }

.support-badge {
  width: 44px; height: 44px; border-radius: 12px; flex: 0 0 auto;
  display: grid; place-items: center;
  background: rgba(214,138,44,0.16); color: var(--gold);
  box-shadow: inset 0 0 0 1px rgba(214,138,44,0.22);
}
.support-badge svg { width: 21px; height: 21px; }

/* mini-acordeão dos itens (clicáveis) */
.support-acc { display: flex; flex-direction: column; }
.support-item { border-top: 1px solid rgba(255,255,255,0.1); }
.support-item:first-child { border-top: none; }
.support-item__head {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 0.9rem; text-align: left;
  padding: 0.85rem 0.6rem; border-radius: 12px;
  font-family: var(--sans); color: #fff;
  transition: background-color .25s var(--ease);
}
.support-item__head:hover { background: rgba(255,255,255,0.07); }
.support-item.is-open .support-item__head { background: rgba(214,138,44,0.12); }
.support-item__label { flex: 1 1 auto; font-weight: 600; font-size: 1.04rem; color: #fff; }
.support-item__icon { flex: 0 0 auto; width: 22px; height: 22px; display: grid; place-items: center; color: var(--gold); transition: transform .4s var(--ease); }
.support-item__icon svg { width: 18px; height: 18px; }
.support-item.is-open .support-item__icon { transform: rotate(180deg); }

.support-item__wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.support-item.is-open .support-item__wrap { grid-template-rows: 1fr; }
.support-item__inner { overflow: hidden; }
.support-item__a {
  margin: 0; padding: 0.1rem 0.6rem 1rem 3.5rem;
  color: rgba(244,247,250,0.82); font-size: 0.95rem; line-height: 1.6;
}

.support-card__foot {
  margin: 1.2rem 0 0; padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.14);
  font-size: 0.9rem; color: rgba(255,255,255,0.68); letter-spacing: 0.01em;
}

/* ---------- O que você protege (3 cards) ---------- */
.protege { background: var(--ice); }
.protege__head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.protege__head .section-title { max-width: 22ch; margin: 0 auto; }

.protege__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.25rem); }
.pcard {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.pcard:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: var(--shadow-lg);
  border-color: rgba(214,138,44,0.55); /* realce dourado sutil */
}
.pcard__media { aspect-ratio: 4 / 5; overflow: hidden; }
.pcard__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 30%;
  transition: transform .75s ease-out; /* zoom lento e gradual */
}
.pcard:hover .pcard__media img { transform: scale(1.05); }
.pcard__body { padding: clamp(1.5rem, 2.5vw, 2rem); }
.pcard__title { font-size: 1.6rem; margin: 0 0 0.6rem; }
.pcard__text { color: var(--text-2); font-size: 1.02rem; margin: 0; }

/* stagger do reveal nos cards */
.protege__grid .pcard:nth-child(2).reveal { transition-delay: .1s; }
.protege__grid .pcard:nth-child(3).reveal { transition-delay: .2s; }

/* ---------- Como funciona (3 passos) ---------- */
.how { background: var(--white); }
.how__head { text-align: center; margin-bottom: clamp(2.75rem, 5vw, 4.5rem); }
.how__head .section-title { max-width: none; }
.how__sub { color: var(--text-2); font-size: clamp(1.05rem, 1.8vw, 1.2rem); margin: 0.9rem 0 0; }

.how__steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.5rem, 3vw, 2.25rem);
}
.step {
  background: linear-gradient(165deg, #124568, #0F3A5E);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  padding: clamp(2rem, 3.5vw, 2.75rem) clamp(1.5rem, 2.5vw, 2rem);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
}
.step:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold); /* realce dourado sobre o azul */
}
.step__num {
  width: 76px; height: 76px; border-radius: 50%; flex: 0 0 auto;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.05); border: 1.5px solid rgba(214,138,44,0.6);
  color: var(--gold); font-family: var(--display); font-size: 2.2rem; line-height: 1;
  margin-bottom: 1.5rem;
  transition: background-color .4s var(--ease), border-color .4s var(--ease);
}
.step:hover .step__num { border-color: var(--gold); background: rgba(214,138,44,0.2); }
.step__title { font-size: 1.5rem; margin: 0 0 0.7rem; color: #fff; }
.step__text { color: rgba(244,247,250,0.86); font-size: 1.02rem; margin: 0; }

.how__steps .step:nth-child(2).reveal { transition-delay: .12s; }
.how__steps .step:nth-child(3).reveal { transition-delay: .24s; }

/* ---------- Perguntas (acordeão) ---------- */
.faq { background: var(--ice); }
.faq__grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.faq__media { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; }
.faq__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }

.faq__panel .section-title { max-width: none; margin-bottom: clamp(1.75rem, 3vw, 2.5rem); }
.faq__list { display: flex; flex-direction: column; }

.qa { border-bottom: 1px solid var(--line); }
.qa:first-child { border-top: 1px solid var(--line); }
.qa__q {
  width: 100%; cursor: pointer; background: none; border: none;
  display: flex; align-items: center; justify-content: space-between; gap: 1.25rem;
  padding: 1.4rem 0.25rem; text-align: left;
  font-family: var(--heading); font-weight: 600; font-size: clamp(1.12rem, 1.7vw, 1.3rem);
  color: var(--royal); transition: color .25s var(--ease);
}
.qa__q:hover { color: var(--gold); }
.qa__icon {
  flex: 0 0 auto; width: 32px; height: 32px; border-radius: 50%;
  display: grid; place-items: center; color: var(--gold);
  background: rgba(214,138,44,0.1);
  transition: transform .4s var(--ease), background-color .25s var(--ease);
}
.qa__icon svg { width: 18px; height: 18px; }
.qa.is-open .qa__icon { transform: rotate(180deg); background: rgba(214,138,44,0.2); }

/* abertura suave via grid-template-rows */
.qa__wrap { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .45s var(--ease); }
.qa.is-open .qa__wrap { grid-template-rows: 1fr; }
.qa__inner { overflow: hidden; }
.qa__a {
  margin: 0; padding: 0 0.25rem 1.5rem; color: var(--text-2);
  font-size: 1.05rem; line-height: 1.7; max-width: 54ch;
}

/* ---------- Sobre o Gregori ---------- */
.about { background: var(--white); }
.about__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__copy .section-title { max-width: none; margin-bottom: 1.5rem; }
.about__text p { color: var(--text); font-size: 1.06rem; line-height: 1.75; margin: 0 0 1.1rem; }
.about__text p:last-child { margin-bottom: 0; }
.about__text p:first-child { font-size: 1.14rem; color: var(--ink-strong); }

.about__frame {
  margin: 0; border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; cursor: pointer;
}
.about__frame img {
  width: 100%; height: 100%; object-fit: cover; object-position: 50% 22%;
  transition: transform .6s ease-out;
}
.about__frame:hover img { transform: scale(1.04); }

.seals { list-style: none; margin: 2rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 0.7rem; }
.seal {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: var(--ice); border: 1px solid var(--line); border-radius: var(--r-pill);
  padding: 0.5rem 0.95rem; font-weight: 500; font-size: 0.92rem; color: var(--royal);
}
.seal__check { position: relative; width: 16px; height: 16px; flex: 0 0 auto; }
.seal__check::after {
  content: ""; position: absolute; left: 5px; top: 1px; width: 5px; height: 9px;
  border: solid var(--gold); border-width: 0 2px 2px 0; transform: rotate(45deg);
}

/* =====================================================================
   CHAMADA FINAL
   ===================================================================== */
.final-cta { padding: clamp(3.5rem, 8vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem); }
.final-cta__card {
  position: relative; text-align: center;
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(214,138,44,0.10), transparent 62%),
    linear-gradient(180deg, #ffffff, #fbfaf7);
  border: 1px solid rgba(214,138,44,0.22);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem) clamp(1.5rem, 5vw, 3rem);
  max-width: 820px; margin: 0 auto;
}
.final-cta__title { font-size: clamp(2rem, 4.6vw, 3.3rem); }
.final-cta__sub { color: var(--text-2); font-size: clamp(1.05rem, 1.8vw, 1.2rem); margin: 1rem auto 2rem; max-width: 46ch; }

/* =====================================================================
   RODAPÉ
   ===================================================================== */
.footer { background: var(--royal); color: rgba(255,255,255,0.82); padding: clamp(3.5rem, 6vw, 5rem) 0 2.25rem; }
.footer__grid {
  display: grid; grid-template-columns: 1.7fr 1fr 1.4fr;
  gap: clamp(2rem, 5vw, 4rem); padding-bottom: 2.5rem;
}
.brand--footer .brand__mono { background: rgba(255,255,255,0.08); box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08); }
.brand--footer .brand__name { color: #fff; }

.footer__tagline { font-family: var(--display); font-weight: 400; font-size: 1.2rem; color: #fff; margin: 1.1rem 0 0.75rem; }
.footer__blurb { color: rgba(255,255,255,0.66); font-size: 0.96rem; margin: 0; max-width: 34ch; }

.footer__h { font-family: var(--heading); font-weight: 600; font-size: 1.12rem; color: #fff; margin: 0 0 1.1rem; }
.footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.65rem; }
.footer__links a, .footer__mail { color: rgba(255,255,255,0.74); text-decoration: none; transition: color .2s var(--ease); }
.footer__links a:hover, .footer__mail:hover { color: var(--gold); }
.footer__contact { color: rgba(255,255,255,0.74); margin: 0 0 0.55rem; }
.footer__mail { display: inline-block; margin-bottom: 1.35rem; border-bottom: 1px solid rgba(255,255,255,0.22); padding-bottom: 1px; }
.footer__wa { --py: 0.7rem; --px: 1.25rem; font-size: 0.92rem; }

.footer__bar {
  border-top: 1px solid rgba(255,255,255,0.14); padding-top: 1.5rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0.5rem;
  color: rgba(255,255,255,0.6); font-size: 0.85rem;
}
.footer__bar p { margin: 0; }
.footer__placeholder { color: var(--gold); }

/* =====================================================================
   ANIMAÇÕES
   ===================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =====================================================================
   RESPONSIVO
   ===================================================================== */
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle { display: flex; }

  /* Herói empilhado: imagem em cima (banner), texto abaixo em card claro */
  .hero__frame { min-height: 0; display: flex; flex-direction: column; background: var(--white); }
  .hero__img { position: relative; inset: auto; height: clamp(240px, 42vw, 340px); z-index: 0; object-position: 66% 40%; }
  .hero__scrim { display: none; }
  .hero__content { max-width: none; min-height: 0; padding: clamp(1.75rem, 6vw, 2.5rem); }

  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2.25rem; }
  .footer__brandcol { grid-column: 1 / -1; }

  .whatis__grid { grid-template-columns: 1fr; }
  .whatis__aside { max-width: 460px; }

  .protege__grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }

  .how__steps { grid-template-columns: 1fr; gap: 1.5rem; max-width: 420px; margin-inline: auto; }

  .faq__grid { grid-template-columns: 1fr; }
  .faq__media { max-width: 420px; margin-inline: auto; }

  .about__grid { grid-template-columns: 1fr; }
  .about__media { order: -1; max-width: 380px; }
}

@media (min-width: 861px) { .nav__mobile { display: none !important; } }

@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bar { justify-content: flex-start; gap: 0.35rem; }
}

@media (max-width: 380px) {
  .brand__mono { width: 38px; height: 38px; }
  .brand__name { font-size: 1.12rem; }
}

@media (max-width: 480px) {
  .hero__actions .btn { flex: 1 1 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  /* sem zoom nem elevação no hover para quem reduziu movimento */
  .pcard:hover, .pcard:hover .pcard__media img, .step:hover,
  .about__frame:hover img { transform: none; }
}
