/* =====================================================================
   SL CAPITAL · Soluções Financeiras
   Sistema visual conforme o Manual de Identidade Visual (Brand Book 2026)
   Proporção de uso: ~70% navy · ~22% marfim · ~8% dourado
   ===================================================================== */

:root {
  /* Cores da marca */
  --navy-profundo: #07182F;
  --navy-sl:       #0B2244;
  --dourado-grad-1:#8C6A2E;
  --dourado-grad-2:#F3DCA0;
  --dourado-met:   #C9A24E;
  --dourado-sol:   #B58E4C; /* dourado para textos pequenos / CTA primário */
  --marfim:        #F7F4EE;
  --cinza-pedra:   #6B6557;
  --branco:        #FFFFFF;

  /* Gradiente dourado metálico */
  --grad-dourado: linear-gradient(100deg, #8C6A2E 0%, #C9A24E 38%, #F3DCA0 60%, #C9A24E 82%, #8C6A2E 100%);

  /* Tipografia */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  /* Layout */
  --maxw: 1140px;
  --radius: 6px;        /* botões: raio de 4 a 6 px */
  --radius-card: 12px;
  --gutter: clamp(20px, 5vw, 48px);
  --header-h: 100px;
}

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

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

/* clip (e não hidden) evita rolagem horizontal SEM quebrar o position: sticky do header */
html, body { overflow-x: hidden; overflow-x: clip; }

body {
  margin: 0;
  padding-top: var(--header-h);  /* reserva o espaço do header fixo */
  font-family: var(--sans);
  font-size: 17px;          /* corpo mínimo 16px */
  line-height: 1.65;        /* entrelinha 1.6 a 1.7 */
  color: var(--navy-profundo);
  background: var(--marfim);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-wrap: break-word;
}

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

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ---------- Tipografia de marca ---------- */
h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: .2px;
  margin: 0;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cinza-pedra);
  margin: 0 0 14px;
}
.eyebrow--gold { color: var(--dourado-sol); }

.section__title {
  font-size: clamp(2rem, 4.2vw, 3rem);
  color: var(--navy-sl);
  max-width: 18ch;
}
.section__title--light { color: var(--branco); }

.section__intro {
  max-width: 60ch;
  margin: 20px 0 0;
  color: var(--cinza-pedra);
  font-size: 1.05rem;
}
.section__intro strong { color: var(--navy-sl); font-weight: 600; }

/* ---------- Botões ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .01em;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
/* CTA primário: dourado sólido com texto branco */
.btn--primary {
  background: var(--dourado-sol);
  color: var(--branco);
  box-shadow: 0 6px 18px rgba(181, 142, 76, .28);
}
.btn--primary:hover {
  background: var(--dourado-met);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(181, 142, 76, .38);
}
/* Secundário: contorno (navy ou branco conforme fundo) */
.btn--ghost {
  background: transparent;
  color: var(--branco);
  border-color: rgba(255, 255, 255, .55);
}
.btn--ghost:hover {
  border-color: var(--dourado-grad-2);
  color: var(--dourado-grad-2);
}
.btn--block { width: 100%; }

/* =====================================================================
   HEADER  ·  versão positiva sobre fundo claro
   ===================================================================== */
.site-header {
  position: fixed;          /* fixo no topo, independente de overflow de ancestrais */
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(247, 244, 238, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(11, 34, 68, .08);
}
.header__inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 32px);
  min-height: var(--header-h);
}
.header__brand {
  flex-shrink: 0;          /* o logo nunca encolhe/espreme quando o header aperta */
  line-height: 0;
}
.header__brand img {
  height: 62px;
  width: auto;
  max-width: none;         /* evita que o max-width:100% global comprima a largura */
  display: block;
}

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  gap: 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Botão WhatsApp na barra superior */
.header__whats {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .95rem;
  color: var(--navy-sl);
  padding: 9px 16px;
  border-radius: var(--radius);
  border: 1.5px solid rgba(11, 34, 68, .18);
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.header__whats svg {
  width: 22px;
  height: 22px;
  color: #25D366;
  flex-shrink: 0;
}
.header__whats:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
  transform: translateY(-2px);
}
.header__whats:hover svg { color: #fff; }
.nav__list a {
  font-size: .96rem;
  font-weight: 500;
  color: var(--navy-sl);
  padding: 6px 0;
  position: relative;
}
.nav__list a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 2px;
  background: var(--dourado-met);
  transition: width .22s ease;
}
.nav__list a:hover::after { width: 100%; }

.header__cta { padding: 10px 20px; }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  margin-left: auto;
}
.nav__toggle span {
  display: block;
  height: 2px;
  width: 24px;
  background: var(--navy-sl);
  transition: transform .25s ease, opacity .25s ease;
}

/* =====================================================================
   HERO  ·  navy com escudo e arcos dourados
   ===================================================================== */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 80% 10%, var(--navy-sl) 0%, var(--navy-profundo) 55%);
  color: var(--branco);
  padding: clamp(56px, 9vw, 104px) 0 0;
}
/* Arcos dourados concêntricos (assinatura gráfica, 1px, opacidade reduzida) */
.hero__arcs {
  position: absolute;
  right: -14%;
  top: -28%;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 78, .22);
  box-shadow:
    0 0 0 60px rgba(201, 162, 78, .05),
    inset 0 0 0 110px rgba(201, 162, 78, .04);
  pointer-events: none;
}
.hero__arcs::after {
  content: "";
  position: absolute;
  inset: 130px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 78, .14);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: 40px;
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 500;
  margin: 6px 0 0;
  letter-spacing: .3px;
}
.hero__title em {
  display: block;
  font-style: italic;
  font-weight: 500;
  background: var(--grad-dourado);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  max-width: 46ch;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}
.hero__shield {
  justify-self: center;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, .45));
}
.hero__shield img { width: clamp(180px, 26vw, 300px); }

.hero__partners {
  position: relative;
  margin-top: clamp(48px, 7vw, 80px);
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, .12);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 18px;
}
.hero__partners-label {
  font-size: 11px;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--dourado-sol);
  font-weight: 600;
}
.hero__partners-names {
  color: rgba(255, 255, 255, .7);
  font-size: .95rem;
}

/* =====================================================================
   SECTIONS
   ===================================================================== */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--light { background: var(--branco); }
.section--ivory { background: var(--marfim); }
.section--navy {
  background: radial-gradient(120% 130% at 15% 0%, var(--navy-sl) 0%, var(--navy-profundo) 60%);
  color: var(--branco);
}

/* ---------- Pilares (Essência / Promessa / Tom) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.pillar {
  background: var(--marfim);
  border: 1px solid rgba(11, 34, 68, .08);
  border-top: 3px solid var(--dourado-met);
  border-radius: var(--radius-card);
  padding: 28px 26px;
}
.pillar__title {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--dourado-sol);
  margin-bottom: 10px;
}
.pillar p { margin: 0; color: var(--cinza-pedra); font-size: .98rem; }

/* ---------- Soluções / Portfólio ---------- */
.solutions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.solution {
  background: var(--branco);
  border: 1px solid rgba(11, 34, 68, .08);
  border-radius: var(--radius-card);
  padding: 30px 28px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.solution:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(7, 24, 47, .10);
  border-color: rgba(201, 162, 78, .45);
}
/* Ícones de traço fino dentro de círculo dourado */
.solution__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--dourado-met);
  color: var(--dourado-sol);
  margin-bottom: 18px;
}
.solution__icon svg { width: 26px; height: 26px; }
.solution__title {
  font-size: 1.5rem;
  color: var(--navy-sl);
  margin-bottom: 8px;
}
.solution__brand { color: var(--dourado-sol); }
.solution p { margin: 0; color: var(--cinza-pedra); font-size: .97rem; }

/* Card destaque: Seguros de Vida (expertise fundadora) */
.solution--featured {
  background: radial-gradient(130% 130% at 20% 0%, var(--navy-sl) 0%, var(--navy-profundo) 70%);
  color: var(--branco);
  border-color: transparent;
}
.solution--featured .solution__icon { border-color: var(--dourado-grad-2); color: var(--dourado-grad-2); }
.solution--featured .solution__title { color: var(--branco); }
.solution--featured p { color: rgba(255, 255, 255, .8); }

/* ---------- Prova social / números ---------- */
.stats {
  background: var(--navy-profundo);
  border-top: 1px solid rgba(201, 162, 78, .18);
  padding: clamp(28px, 4vw, 40px) 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  text-align: center;
}
.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px 6px;
  position: relative;
}
.stat + .stat::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 46px;
  background: rgba(201, 162, 78, .22);
}
.stat__num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(1.7rem, 3.4vw, 2.5rem);
  line-height: 1.05;
  background: var(--grad-dourado);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat__num--text { letter-spacing: .2px; }
.stat__label {
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
  font-weight: 600;
}

/* ---------- Para quem atendemos ---------- */
.audience {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 48px;
}
.audience__card {
  background: var(--branco);
  border: 1px solid rgba(11, 34, 68, .08);
  border-radius: var(--radius-card);
  padding: 30px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.audience__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(7, 24, 47, .10);
  border-color: rgba(201, 162, 78, .45);
}
.audience__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 50%;
  border: 1px solid var(--dourado-met);
  color: var(--dourado-sol);
  margin-bottom: 18px;
}
.audience__icon svg { width: 26px; height: 26px; }
.audience__title { font-size: 1.4rem; color: var(--navy-sl); margin-bottom: 8px; }
.audience__card p { margin: 0; color: var(--cinza-pedra); font-size: .96rem; }

/* ---------- CTA da seção de crédito ---------- */
.credito__cta { margin-top: 40px; text-align: center; }

/* ---------- Faixa de destaque ---------- */
.band {
  position: relative;
  overflow: hidden;
  background: var(--navy-profundo);
  color: var(--branco);
  padding: clamp(64px, 9vw, 104px) 0;
  text-align: center;
}
.band__arcs {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 680px; height: 680px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 78, .14);
  pointer-events: none;
}
.band__arcs::after {
  content: "";
  position: absolute;
  inset: 90px;
  border-radius: 50%;
  border: 1px solid rgba(201, 162, 78, .10);
}
.band__inner { position: relative; max-width: 760px; margin-inline: auto; }
.band__quote {
  font-size: clamp(1.9rem, 4.4vw, 3rem);
  font-style: italic;
  font-weight: 500;
  background: var(--grad-dourado);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.band__text {
  margin: 22px auto 32px;
  max-width: 52ch;
  color: rgba(255, 255, 255, .8);
}

/* ---------- Parceiros ---------- */
.partners {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  list-style: none;
  margin: 48px 0 0;
  padding: 0;
}
.partner {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 92px;
  padding: 16px;
  background: var(--marfim);
  border: 1px solid rgba(11, 34, 68, .08);
  border-radius: var(--radius-card);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy-sl);
  transition: border-color .2s ease, color .2s ease;
}
.partner:hover { border-color: var(--dourado-met); color: var(--dourado-sol); }
.partners__note {
  margin-top: 22px;
  font-size: .82rem;
  color: var(--cinza-pedra);
}

/* ---------- Contato ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}
.contact__lead { color: rgba(255, 255, 255, .8); max-width: 42ch; margin-top: 18px; }
.contact__whats {
  margin-top: 30px;
  display: inline-flex;
  align-items: center;
  gap: 16px;
}
.contact__whats-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(37, 211, 102, .4);
  transition: transform .2s ease;
}
.contact__whats-icon svg { width: 30px; height: 30px; }
.contact__whats:hover .contact__whats-icon { transform: scale(1.06); }
.contact__whats-text { display: flex; flex-direction: column; gap: 2px; }
.contact__whats-label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--dourado-sol);
  font-weight: 600;
}
.contact__whats-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 600;
  color: var(--branco);
  line-height: 1.1;
}
.contact__whats:hover .contact__whats-num { color: var(--dourado-grad-2); }

.contact__form {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-card);
  padding: 32px;
  display: grid;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .8);
}
.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--branco);
  background: rgba(7, 24, 47, .5);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: var(--radius);
  padding: 12px 14px;
  transition: border-color .18s ease, box-shadow .18s ease;
}
.field textarea {
  resize: vertical;
  min-height: 96px;
  line-height: 1.5;
}
.field input::placeholder,
.field textarea::placeholder { color: rgba(255, 255, 255, .4); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--dourado-met);
  box-shadow: 0 0 0 3px rgba(201, 162, 78, .18);
}
.field select option { color: #111; }
.field__opt {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: rgba(255, 255, 255, .5);
}
.contact__feedback {
  margin: 0;
  min-height: 1.2em;
  font-size: .92rem;
  color: var(--dourado-grad-2);
}

/* Honeypot anti-spam: oculto para humanos, presente no DOM para bots */
.hp {
  position: absolute !important;
  left: -9999px !important;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* =====================================================================
   FOOTER  ·  versão negativa sobre navy + cobranding
   ===================================================================== */
.site-footer {
  background: var(--navy-profundo);
  color: rgba(255, 255, 255, .72);
  padding: 54px 0 30px;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.footer__brand img { height: 40px; width: auto; }
.footer__tag {
  margin: 12px 0 0;
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--dourado-sol);
}
.footer__nav { display: flex; gap: 24px; flex-wrap: wrap; }
.footer__nav a { font-size: .95rem; }
.footer__nav a:hover { color: var(--dourado-grad-2); }
.footer__franchise { text-align: right; display: flex; flex-direction: column; gap: 2px; }
.footer__franchise-label {
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .55);
}
.footer__franchise-brand {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--branco);
}
.footer__franchise-logo {
  height: 38px;
  width: auto;
  margin-top: 6px;
  align-self: flex-end;     /* alinhado à direita, como o resto do bloco */
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}
.footer__legal a:hover { color: var(--dourado-grad-2); }

.footer__legal-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}
.footer__legal-links a,
.footer__legal-links .linklike {
  color: rgba(255, 255, 255, .6);
  font-size: .82rem;
}
.footer__legal-links a:hover,
.footer__legal-links .linklike:hover { color: var(--dourado-grad-2); }

/* Botão estilo link (preferências de cookies) */
.linklike {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

/* Botão compacto */
.btn--sm { padding: 9px 18px; font-size: .9rem; }

/* =====================================================================
   AVISO DE COOKIES (LGPD)
   ===================================================================== */
.cookie {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 200;
  background: rgba(7, 24, 47, .97);
  color: #fff;
  border: 1px solid rgba(201, 162, 78, .3);
  border-radius: var(--radius-card);
  box-shadow: 0 16px 44px rgba(0, 0, 0, .45);
  backdrop-filter: blur(8px);
}
.cookie[hidden] { display: none; }
.cookie__inner {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 16px 24px;
}
.cookie__text { margin: 0; font-size: .9rem; color: rgba(255, 255, 255, .85); flex: 1; }
.cookie__text a { color: var(--dourado-grad-2); text-decoration: underline; }
.cookie__actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie__actions .btn--ghost { color: #fff; border-color: rgba(255, 255, 255, .4); }

/* =====================================================================
   WHATSAPP FLUTUANTE
   ===================================================================== */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 150;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(37, 211, 102, .45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.wa-float svg { width: 32px; height: 32px; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 14px 30px rgba(37, 211, 102, .55); }
/* Some o flutuante enquanto o banner de cookies está aberto (evita sobreposição) */
.cookie:not([hidden]) ~ .wa-float { display: none; }

/* =====================================================================
   PÁGINA LEGAL (privacidade / cookies)
   ===================================================================== */
.legal { padding: clamp(48px, 7vw, 88px) 0; background: var(--branco); }
.legal__inner { max-width: 760px; }
.legal__title { font-size: clamp(2rem, 5vw, 3rem); color: var(--navy-sl); margin: 6px 0 8px; }
.legal__updated { color: var(--cinza-pedra); font-size: .9rem; margin: 0 0 28px; }
.legal h2 {
  font-size: 1.5rem;
  color: var(--navy-sl);
  margin: 36px 0 10px;
}
.legal p, .legal li { color: #2d3b4f; }
.legal ul { padding-left: 1.2em; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--dourado-sol); text-decoration: underline; }
.legal a.btn { text-decoration: none; color: #fff; }
.legal__back { margin-top: 40px; }

/* =====================================================================
   BLOG · listagem e artigos
   ===================================================================== */
.blog-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 140% at 80% 10%, var(--navy-sl) 0%, var(--navy-profundo) 55%);
  color: var(--branco);
  padding: clamp(56px, 8vw, 96px) 0 clamp(40px, 6vw, 72px);
}
.blog-hero__title { font-size: clamp(2.2rem, 5vw, 3.4rem); color: var(--branco); max-width: 20ch; }
.blog-hero__title em {
  font-style: italic;
  background: var(--grad-dourado);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.blog-hero__lead { max-width: 56ch; margin: 18px 0 0; color: rgba(255, 255, 255, .82); }

.posts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 8px;
}
.post-card {
  display: flex;
  flex-direction: column;
  background: var(--branco);
  border: 1px solid rgba(11, 34, 68, .08);
  border-radius: var(--radius-card);
  padding: 28px 26px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(7, 24, 47, .10);
  border-color: rgba(201, 162, 78, .45);
}
.post-card__tag {
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--dourado-sol);
  font-weight: 600;
  margin-bottom: 12px;
}
.post-card__title {
  font-size: 1.5rem;
  color: var(--navy-sl);
  margin-bottom: 10px;
  line-height: 1.15;
}
.post-card__excerpt { color: var(--cinza-pedra); font-size: .96rem; margin: 0 0 18px; }
.post-card__more {
  margin-top: auto;
  font-weight: 600;
  font-size: .92rem;
  color: var(--dourado-sol);
}
.post-card:hover .post-card__more { color: var(--dourado-met); }

/* Corpo do artigo (reaproveita a tipografia da página legal) */
.article { padding: clamp(40px, 6vw, 72px) 0 clamp(48px, 7vw, 88px); background: var(--branco); }
.article__inner { max-width: 720px; }
.article__meta { color: var(--cinza-pedra); font-size: .88rem; margin: 0 0 26px; }
.article h2 { font-size: 1.6rem; color: var(--navy-sl); margin: 38px 0 12px; }
.article h3 { font-size: 1.25rem; color: var(--navy-sl); margin: 28px 0 10px; }
.article p, .article li { color: #2d3b4f; font-size: 1.05rem; }
.article ul, .article ol { padding-left: 1.3em; }
.article li { margin-bottom: 8px; }
.article blockquote {
  margin: 28px 0;
  padding: 18px 24px;
  border-left: 3px solid var(--dourado-met);
  background: var(--marfim);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--navy-sl);
}
.article__cta {
  margin-top: 44px;
  padding: 28px;
  border-radius: var(--radius-card);
  background: radial-gradient(130% 130% at 20% 0%, var(--navy-sl) 0%, var(--navy-profundo) 70%);
  color: var(--branco);
  text-align: center;
}
.article__cta h3 { color: var(--branco); margin: 0 0 8px; }
.article__cta p { color: rgba(255, 255, 255, .82); margin: 0 0 18px; }
.article__back { margin-top: 36px; }

@media (max-width: 920px) { .posts { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .posts { grid-template-columns: 1fr; } }

/* =====================================================================
   RESPONSIVO
   ===================================================================== */
@media (max-width: 1100px) {
  /* nav vira menu hambúrguer; WhatsApp e toggle ficam à direita */
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: var(--marfim);
    border-bottom: 1px solid rgba(11, 34, 68, .1);
    margin: 0;
    max-height: 0;
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(7, 24, 47, .08);
    transition: max-height .3s ease;
  }
  .nav.is-open { max-height: 340px; }
  .nav__list { flex-direction: column; gap: 0; padding: 8px var(--gutter); }
  .nav__list li { border-bottom: 1px solid rgba(11, 34, 68, .06); }
  .nav__list a { display: block; padding: 15px 0; font-size: 1.05rem; }

  .header__actions { margin-left: auto; }
  .header__cta { display: none; }     /* CTA texto só no desktop; WhatsApp permanece */

  .nav__toggle { display: flex; }
  .nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding-top: clamp(32px, 7vw, 56px); }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 18px; }
  .hero__shield { order: -1; justify-self: center; }
  .hero__shield img { width: 96px; }
  .hero__arcs { width: 320px; height: 320px; right: -22%; top: -10%; }
  .band__arcs { width: 360px; height: 360px; }
  .eyebrow { margin-bottom: 10px; }
  .hero__lead { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .hero__partners { justify-content: center; text-align: center; }
  .hero__partners-names { width: 100%; }

  .solutions { grid-template-columns: repeat(2, 1fr); }
  .pillars { grid-template-columns: 1fr; }
  .partners { grid-template-columns: repeat(3, 1fr); }
  .contact { grid-template-columns: 1fr; }

  .audience { grid-template-columns: repeat(2, 1fr); }
  .stats__grid { grid-template-columns: repeat(3, 1fr); gap: 22px 12px; }
  .stat + .stat::before { display: none; }
}

@media (max-width: 560px) {
  :root { --header-h: 78px; }
  body { font-size: 16px; }

  .header__brand img { height: 46px; }
  /* WhatsApp em modo só-ícone para caber bem no celular */
  .header__whats { padding: 9px; }
  .header__whats span { display: none; }

  .hero__title { font-size: clamp(2rem, 8.5vw, 2.6rem); }
  .hero__shield img { width: 84px; }
  .hero__actions { gap: 12px; }

  .solutions { grid-template-columns: 1fr; }
  .audience { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .partners { grid-template-columns: repeat(2, 1fr); }
  .partner { min-height: 76px; font-size: 1.15rem; }
  .contact__form { padding: 24px 20px; }
  .contact__whats-num { font-size: 1.65rem; }

  .cookie { left: 10px; right: 10px; bottom: 10px; }
  .cookie__inner { flex-direction: column; align-items: stretch; gap: 14px; padding: 18px; }
  .cookie__text { font-size: .85rem; }
  .cookie__actions { justify-content: flex-end; }

  .footer__inner { flex-direction: column; align-items: flex-start; }
  .footer__nav { gap: 16px 20px; }
  .footer__franchise { text-align: left; }
  .footer__legal { flex-direction: column; gap: 6px; }
}

@media (max-width: 360px) {
  .partners { grid-template-columns: 1fr 1fr; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
