/* =========================================================
   GAP Assessoria Previdenciária — Landing Page
   Paleta base definida a partir de tons institucionais.
   Ao receber a logomarca oficial, ajuste apenas as variáveis
   --brand-* abaixo: todo o restante do layout acompanha.
   ========================================================= */

:root {
  /* Cores da marca */
  --brand-900: #0A3947;
  --brand-800: #0E4A5C;
  --brand-700: #145E73;
  --brand-500: #2E8FA6;
  --brand-100: #DCEBEF;
  --accent: #D89E4E;
  --accent-soft: #E9B872;
  --accent-100: #FBF0DD;

  /* Neutros */
  --sand-50: #FBF8F3;
  --sand-100: #F4EDE3;
  --line: #E6DCCD;
  --ink: #16323B;
  --ink-soft: #476370;
  --ink-mute: #6B838E;
  --white: #FFFFFF;

  /* WhatsApp */
  --wa: #25D366;
  --wa-dark: #1CA851;
  --wa-ink: #08321A;

  /* Formas */
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(10, 57, 71, .06), 0 2px 8px rgba(10, 57, 71, .05);
  --shadow: 0 4px 12px rgba(10, 57, 71, .07), 0 12px 32px rgba(10, 57, 71, .08);
  --shadow-lg: 0 18px 50px rgba(10, 57, 71, .16);

  /* Tipografia */
  --font-title: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --container: 1140px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

[hidden] { display: none !important; }

h1, h2, h3 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -.015em;
  margin: 0 0 .5em;
  color: var(--brand-900);
}

h1 { font-size: clamp(2.1rem, 1.35rem + 2.6vw, 3.45rem); font-weight: 600; }
h2 { font-size: clamp(1.6rem, 1.15rem + 1.6vw, 2.35rem); }
h3 { font-size: 1.12rem; font-weight: 600; letter-spacing: -.01em; }

p { margin: 0 0 1rem; }
a { color: var(--brand-700); }

ul, ol { margin: 0; padding: 0; list-style: none; }

button { font: inherit; color: inherit; }

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

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--brand-800); color: #fff;
  padding: .65rem 1rem; border-radius: 0 0 8px 8px;
  text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}
.container--narrow { max-width: 800px; }

.section { padding: clamp(3.5rem, 2rem + 5vw, 6rem) 0; }
.section--sand { background: var(--sand-50); border-block: 1px solid var(--line); }
.section--dark { background: var(--brand-900); color: #D9E7EB; }

.section__head { max-width: 740px; margin-bottom: 2.75rem; }
.section__head--light h2 { color: #fff; }
.section__head--light .section__lead { color: #B9D2D9; }

.section__lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-bottom: 0;
}

.section__after {
  max-width: 760px;
  margin: 2.5rem auto 0;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1.05rem;
}
.section__after--small { font-size: .98rem; margin-top: 2rem; }

.eyebrow {
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand-500);
  margin: 0 0 .75rem;
}
.section--dark .eyebrow,
.cta-final .eyebrow { color: var(--accent-soft); }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 600;
  font-size: .98rem;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background-color .2s ease, color .2s ease;
  text-align: center;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--sm { padding: .6rem 1.1rem; font-size: .9rem; }
.btn--lg { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn--xl { padding: 1.15rem 2.4rem; font-size: 1.1rem; }
.btn--block { width: 100%; }

.btn--wa {
  background: var(--wa);
  color: var(--wa-ink);
  box-shadow: 0 6px 18px rgba(37, 211, 102, .32);
}
.btn--wa:hover { background: var(--wa-dark); color: #fff; box-shadow: 0 10px 26px rgba(37, 211, 102, .4); }

.btn--primary { background: var(--brand-800); color: #fff; }
.btn--primary:hover { background: var(--brand-900); }

.btn--ghost {
  background: transparent;
  color: var(--brand-800);
  border-color: rgba(14, 74, 92, .28);
}
.btn--ghost:hover { background: var(--brand-100); border-color: var(--brand-500); }

.btn--ghost-light {
  background: transparent;
  color: #DCE8EC;
  border-color: rgba(255, 255, 255, .35);
}
.btn--ghost-light:hover { background: rgba(255, 255, 255, .1); color: #fff; }

.link-btn {
  background: none; border: 0; padding: 0;
  color: var(--brand-700); font-weight: 600;
  text-decoration: underline; text-underline-offset: 3px;
  cursor: pointer;
}
.link-btn:hover { color: var(--brand-900); }

/* ---------- Ícones ---------- */
.ico-wa {
  width: 20px; height: 20px; flex: none;
  background-color: currentColor;
  -webkit-mask: var(--wa-mask) center / contain no-repeat;
  mask: var(--wa-mask) center / contain no-repeat;
  --wa-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.47 14.38c-.3-.15-1.76-.87-2.03-.97-.27-.1-.47-.15-.67.15-.2.3-.77.96-.94 1.16-.17.2-.35.22-.64.08-.3-.15-1.26-.46-2.4-1.48-.88-.79-1.48-1.76-1.66-2.06-.17-.3-.02-.46.13-.6.13-.13.3-.35.45-.52.15-.17.2-.3.3-.5.1-.2.05-.37-.03-.52-.07-.15-.67-1.61-.92-2.21-.24-.58-.49-.5-.67-.51h-.57c-.2 0-.52.07-.8.37-.27.3-1.04 1.02-1.04 2.48s1.07 2.88 1.22 3.08c.15.2 2.1 3.2 5.08 4.49.71.3 1.26.49 1.7.63.71.23 1.36.19 1.87.12.57-.09 1.76-.72 2-1.41.25-.7.25-1.29.17-1.41-.07-.13-.27-.2-.57-.35z'/%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.38a9.87 9.87 0 0 0 4.79 1.22h.004c5.46 0 9.91-4.45 9.91-9.91C21.95 6.45 17.5 2 12.04 2zm0 18.15h-.004a8.2 8.2 0 0 1-4.18-1.15l-.3-.18-3.11.82.83-3.04-.2-.31a8.17 8.17 0 0 1-1.26-4.38c0-4.54 3.69-8.23 8.23-8.23 2.2 0 4.26.86 5.82 2.41a8.18 8.18 0 0 1 2.41 5.82c0 4.54-3.7 8.24-8.23 8.24z'/%3E%3C/svg%3E");
}
.ico-wa--lg { width: 28px; height: 28px; }

.ico-check {
  width: 18px; height: 18px; flex: none;
  border-radius: 50%;
  background: var(--accent-100);
  position: relative;
}
.ico-check::after {
  content: "";
  position: absolute;
  left: 6px; top: 3.5px;
  width: 4px; height: 8px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); }

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  color: var(--brand-900);
}
.brand__img { max-height: 46px; width: auto; }

.brand__mark {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  flex: none;
  border-radius: 12px;
  background: linear-gradient(145deg, var(--brand-800), var(--brand-700));
  color: var(--accent-soft);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: .02em;
}
.brand__mark--footer {
  width: 52px; height: 52px;
  font-size: 1.05rem;
  background: rgba(255, 255, 255, .1);
  color: var(--accent-soft);
  margin-bottom: 1rem;
}

.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__text strong {
  font-family: var(--font-title);
  font-size: 1.25rem;
  letter-spacing: .01em;
}
.brand__text small {
  font-size: .72rem;
  color: var(--ink-mute);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.nav { display: flex; align-items: center; gap: 1.75rem; }
.nav .btn { white-space: nowrap; }
.nav__list { display: flex; align-items: center; gap: 1.5rem; }
.nav__list a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: .95rem;
  font-weight: 500;
  padding: .35rem 0;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav__list a:hover { color: var(--brand-800); border-bottom-color: var(--accent); }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  place-items: center;
}
.nav-toggle__bars,
.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--brand-800);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle__bars { position: relative; }
.nav-toggle__bars::before { position: absolute; top: -6px; }
.nav-toggle__bars::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(3rem, 1.5rem + 5vw, 5.5rem) 0 clamp(3.5rem, 2rem + 5vw, 5.5rem);
  background:
    radial-gradient(1100px 520px at 12% -5%, var(--brand-100) 0%, rgba(220, 235, 239, 0) 60%),
    radial-gradient(760px 420px at 96% 8%, var(--accent-100) 0%, rgba(251, 240, 221, 0) 62%),
    var(--sand-50);
  overflow: hidden;
}

.hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 1rem + 3vw, 3.75rem);
  align-items: center;
}

.hero h1 { margin-bottom: 1.1rem; }
.hero h1 em {
  font-style: normal;
  color: var(--brand-700);
  position: relative;
  isolation: isolate;
  white-space: nowrap;
}
.hero h1 em::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .06em;
  height: .3em;
  background: linear-gradient(90deg, var(--accent-soft), rgba(233, 184, 114, .35));
  border-radius: 4px;
  z-index: -1;
}

.hero__lead {
  font-size: clamp(1.02rem, .95rem + .35vw, 1.18rem);
  color: var(--ink-soft);
  max-width: 34em;
  margin-bottom: 1.85rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-bottom: 2rem;
}

.hero__badges {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin-bottom: 1.5rem;
}
.hero__badges li {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-size: .96rem;
  color: var(--ink-soft);
  font-weight: 500;
}

.hero__note {
  font-size: .82rem;
  color: var(--ink-mute);
  max-width: 44em;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  margin: 0;
}

.hero__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  box-shadow: var(--shadow-lg);
}
.hero__card-title {
  font-family: var(--font-title);
  font-size: 1.22rem;
  font-weight: 600;
  color: var(--brand-900);
  margin-bottom: 1.1rem;
}
.hero__card-foot {
  font-size: .85rem;
  color: var(--ink-mute);
  text-align: center;
  margin: 1.1rem 0 0;
}

.quick-list { display: flex; flex-direction: column; gap: .5rem; }
.quick-list__item {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .85rem 1.1rem;
  background: var(--sand-50);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: .98rem;
  font-weight: 600;
  color: var(--brand-900);
  text-align: left;
  cursor: pointer;
  transition: all .18s ease;
}
.quick-list__item span { color: var(--brand-500); transition: transform .18s ease; }
.quick-list__item:hover {
  background: var(--brand-800);
  border-color: var(--brand-800);
  color: #fff;
  transform: translateX(3px);
}
.quick-list__item:hover span { color: var(--accent-soft); transform: translateX(3px); }
.quick-list__item--alt {
  background: transparent;
  border-style: dashed;
  font-weight: 500;
  color: var(--ink-soft);
}

/* ---------- Cards ---------- */
.cards { display: grid; gap: 1.25rem; }
.cards--3 { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: .5rem; }
.card p { color: var(--ink-soft); font-size: .97rem; margin: 0; }

.card__ico {
  display: grid;
  place-items: center;
  width: 46px; height: 46px;
  border-radius: 12px;
  background: var(--brand-100);
  color: var(--brand-700);
  margin-bottom: 1.1rem;
}
.card__ico svg { width: 24px; height: 24px; }

.cards--light .card--plain {
  background: rgba(255, 255, 255, .05);
  border-color: rgba(255, 255, 255, .13);
  box-shadow: none;
  padding: 1.5rem;
}
.cards--light .card--plain h3 { color: #fff; }
.cards--light .card--plain p { color: #AEC8D0; }

/* ---------- Features (destaques) ---------- */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.feature {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.feature::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 5px;
}
.feature--maternidade::before { background: linear-gradient(90deg, var(--accent-soft), var(--accent)); }
.feature--bpc::before { background: linear-gradient(90deg, var(--brand-500), var(--brand-700)); }

.feature__tag {
  display: inline-block;
  align-self: flex-start;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .32rem .7rem;
  border-radius: 999px;
  margin-bottom: .9rem;
}
.feature--maternidade .feature__tag { background: var(--accent-100); color: #96682A; }
.feature--bpc .feature__tag { background: var(--brand-100); color: var(--brand-700); }

.feature h3 {
  font-size: clamp(1.4rem, 1.2rem + .7vw, 1.75rem);
  margin-bottom: .75rem;
}
.feature__desc { color: var(--ink-soft); font-size: .99rem; }

.feature__list {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  margin: 1.25rem 0;
  padding: 1.25rem 0;
  border-block: 1px solid var(--line);
}
.feature__list li {
  position: relative;
  padding-left: 1.6rem;
  font-size: .95rem;
  color: var(--ink);
}
.feature__list li::before {
  content: "";
  position: absolute;
  left: .35rem; top: .52em;
  width: 5px; height: 9px;
  border: solid var(--brand-500);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.feature__hint {
  font-size: .88rem;
  color: var(--ink-mute);
  font-style: italic;
  margin-bottom: 1.25rem;
}

.feature .btn { margin-top: auto; }

/* ---------- Grid de serviços ---------- */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: .9rem;
}

.service {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .5rem;
  padding: 1.25rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  cursor: pointer;
  transition: all .18s ease;
}
.service__name {
  font-weight: 600;
  font-size: 1.01rem;
  color: var(--brand-900);
  line-height: 1.35;
}
.service__cta {
  font-size: .84rem;
  font-weight: 600;
  color: var(--brand-500);
  margin-top: auto;
  padding-top: .35rem;
}
.service__cta::after { content: " →"; }
.service:hover {
  border-color: var(--brand-500);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.service--star { border-color: var(--accent-soft); background: linear-gradient(180deg, var(--accent-100), var(--white) 70%); }
.service--star .service__cta { color: #A8762F; }

/* ---------- Passos ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.5rem;
  counter-reset: step;
}
.step { position: relative; padding-top: .5rem; }
.step__num {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--brand-800);
  color: var(--accent-soft);
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: .4rem; }
.step p { color: var(--ink-soft); font-size: .96rem; margin: 0; }

/* ---------- Split (atendimento) ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: clamp(2rem, 1rem + 3vw, 3.5rem);
  align-items: center;
}
.split__col p { color: var(--ink-soft); }
.split__col .btn { margin-top: .75rem; }

.info-box {
  background: var(--brand-900);
  color: #D9E7EB;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
}
.info-box h3 {
  color: #fff;
  font-size: 1.3rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.info-list { margin: 0; display: flex; flex-direction: column; gap: 1.1rem; }
.info-list dt {
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  margin-bottom: .2rem;
}
.info-list dd { margin: 0; font-size: .97rem; line-height: 1.5; overflow-wrap: anywhere; }
.info-list dd a { color: #fff; text-decoration: none; border-bottom: 1px solid rgba(255, 255, 255, .35); }
.info-list dd a:hover { border-color: var(--accent-soft); color: var(--accent-soft); }

/* ---------- Aviso de transparência ---------- */
.notice {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--brand-500);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  max-width: 900px;
  margin-inline: auto;
  box-shadow: var(--shadow-sm);
}
.notice__title { font-size: 1.4rem; margin-bottom: 1rem; }
.notice p { color: var(--ink-soft); font-size: .99rem; }
.notice strong { color: var(--ink); }
.notice__cnpj {
  font-size: .85rem !important;
  color: var(--ink-mute) !important;
  margin: 1.25rem 0 0 !important;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* ---------- FAQ ---------- */
.faq { display: flex; flex-direction: column; gap: .75rem; }

.faq__item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color .2s;
}
.faq__item[open] { border-color: var(--brand-500); }

.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.4rem;
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--brand-900);
  cursor: pointer;
  list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: "";
  flex: none;
  width: 11px; height: 11px;
  border: solid var(--brand-500);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .25s ease;
}
.faq__item[open] summary::after { transform: rotate(-135deg) translateY(-2px); }
.faq__item summary:hover { background: var(--sand-50); }

.faq__answer { padding: 0 1.4rem 1.35rem; }
.faq__answer p { margin: 0; color: var(--ink-soft); font-size: .98rem; }

/* ---------- CTA final ---------- */
.cta-final {
  padding: clamp(3.5rem, 2rem + 5vw, 6rem) 0;
  background:
    radial-gradient(700px 400px at 50% 0%, rgba(46, 143, 166, .28) 0%, rgba(46, 143, 166, 0) 70%),
    var(--brand-900);
  color: #D9E7EB;
  text-align: center;
}
.cta-final h2 { color: #fff; max-width: 18em; margin-inline: auto; }
.cta-final__lead {
  max-width: 44em;
  margin: 0 auto 2rem;
  color: #B9D2D9;
  font-size: 1.05rem;
}
.cta-final__note {
  margin: 1.25rem 0 0;
  font-size: .88rem;
  color: #8FB0BA;
}

/* ---------- Rodapé ---------- */
.site-footer {
  overflow-wrap: anywhere;
  background: #072A35;
  color: #9FBAC3;
  padding: clamp(2.75rem, 2rem + 3vw, 4rem) 0 2rem;
  font-size: .93rem;
}
.site-footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.site-footer__name {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: #fff;
  margin: 0 0 .35rem;
}
.site-footer__tagline { color: #8FB0BA; font-size: .9rem; max-width: 22em; margin: 0; }

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 2rem;
}
.site-footer__cols h3 {
  color: #fff;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.site-footer__cols ul { display: flex; flex-direction: column; gap: .55rem; }
.site-footer__cols a { color: #9FBAC3; text-decoration: none; }
.site-footer__cols a:hover { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 3px; }

.site-footer__legal { padding-top: 2rem; }
.site-footer__company {
  color: #B6CDD4;
  font-size: .87rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}
.site-footer__disclaimer {
  font-size: .8rem;
  line-height: 1.7;
  color: #7E9CA6;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, .04);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
}
.site-footer__copy { font-size: .82rem; color: #6D8B95; margin: 0; }

/* ---------- WhatsApp flutuante ---------- */
.wa-float {
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .85rem 1.35rem .85rem 1.05rem;
  background: var(--wa);
  color: var(--wa-ink);
  font-weight: 700;
  font-size: .95rem;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 26px rgba(8, 50, 26, .3);
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}
.wa-float:hover {
  background: var(--wa-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(8, 50, 26, .38);
}
.wa-float::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, .55);
  animation: wa-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, .5); }
  70%  { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Banner de cookies ---------- */
.cookie {
  position: fixed;
  left: 20px; bottom: 20px;
  z-index: 95;
  max-width: 420px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem 1.4rem;
  background: var(--brand-900);
  color: #C9DDE3;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  animation: cookie-in .35s ease-out;
}
.cookie p { margin: 0; font-size: .87rem; line-height: 1.6; }
.cookie a { color: var(--accent-soft); }
.cookie__actions { display: flex; gap: .6rem; flex-wrap: wrap; }
.cookie__actions .btn { flex: 1 1 auto; }

@keyframes cookie-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Páginas legais ---------- */
.legal-hero {
  background: var(--brand-900);
  color: #C9DDE3;
  padding: clamp(2.5rem, 2rem + 3vw, 4rem) 0;
}
.legal-hero h1 { color: #fff; margin-bottom: .5rem; }
.legal-hero p { margin: 0; color: #9FBAC3; }

.legal { padding: clamp(2.5rem, 2rem + 3vw, 4rem) 0; }
.legal h2 {
  font-size: 1.35rem;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.legal h2:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }
.legal h3 { font-size: 1.05rem; margin-top: 1.5rem; }
.legal p, .legal li { color: var(--ink-soft); font-size: .99rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; margin-bottom: 1rem; display: flex; flex-direction: column; gap: .4rem; }
.legal ul li { padding-left: .25rem; }
.legal .legal__back { display: inline-block; margin-bottom: 2rem; font-weight: 600; text-decoration: none; }
.legal .legal__back:hover { text-decoration: underline; }
.legal__updated {
  font-size: .87rem;
  color: var(--ink-mute);
  padding: 1rem 1.25rem;
  background: var(--sand-50);
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
}

/* =========================================================
   Responsivo
   ========================================================= */
@media (max-width: 960px) {
  .hero__inner { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 860px) {
  .nav-toggle { display: grid; }

  .nav {
    position: fixed;
    inset: 72px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem 20px 1.75rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform .28s ease;
  }
  .nav.is-open { transform: translateY(0); }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list a {
    display: block;
    padding: .85rem .25rem;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav__list a:hover { border-bottom-color: var(--line); }
  .nav .btn { width: 100%; }
}

@media (max-width: 620px) {
  body { font-size: 16px; }

  .hero__actions .btn { width: 100%; }

  .wa-float { padding: .9rem; right: 16px; bottom: 16px; }
  .wa-float__label { display: none; }

  .cookie {
    left: 12px; right: 12px; bottom: 90px;
    max-width: none;
  }

  .feature, .hero__card, .info-box, .notice { padding: 1.5rem; }
  .service-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

@media print {
  .site-header, .wa-float, .cookie, .hero__actions, .nav-toggle { display: none !important; }
}
