/* =========================================================
   Atlas Assessoria Financeira — estilos
   Paleta provisória (substituir pelas cores oficiais da logo)
   ========================================================= */

:root {
  /* Marca */
  --navy-900: #071A33;
  --navy-800: #0B2545;
  --navy-700: #123159;
  --navy-600: #1B4173;
  /* Dourado da marca. #C9A227 só atinge 2,4:1 sobre branco, então serve para
     preenchimentos, bordas e botões — nunca para texto sobre fundo claro.
     Sobre fundo claro use as variantes escuras; sobre navy, as claras. */
  --gold-500: #C9A227;  /* cor da marca: fundos, bordas, botões        */
  --gold-600: #A5831C;  /* ícones sobre fundo claro      — 3,6:1 (AA)  */
  --gold-700: #8A6D12;  /* texto e foco sobre fundo claro — 4,9:1 (AA) */
  --gold-400: #D9B646;  /* sobre navy                                  */
  --gold-300: #E7CE7E;  /* sobre navy                                  */

  /* Neutros */
  --white: #FFFFFF;
  --gray-050: #F5F6F8;
  --gray-100: #ECEEF2;
  --gray-200: #DDE1E8;
  --gray-400: #98A1B0;
  --gray-500: #626B7A;  /* placeholders — 5:1 sobre o cinza dos campos */
  --gray-600: #5A6577;
  --gray-800: #2A3342;

  /* Semânticos */
  --bg: var(--white);
  --bg-alt: var(--gray-050);
  --text: var(--gray-800);
  --text-muted: var(--gray-600);
  --border: var(--gray-200);
  --wa: #25D366;
  --wa-dark: #1DA851;
  --error: #C0392B;
  --success: #1E7A46;

  /* Tipografia */
  --font-head: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Escala fluida */
  --fs-h1: clamp(2.1rem, 1.3rem + 3.4vw, 3.6rem);
  --fs-h2: clamp(1.6rem, 1.15rem + 1.9vw, 2.5rem);
  --fs-h3: clamp(1.15rem, 1rem + 0.6vw, 1.4rem);
  --fs-body: clamp(1rem, 0.97rem + 0.15vw, 1.0625rem);

  /* Layout */
  --container: 1180px;
  --gutter: clamp(1.15rem, 4vw, 2rem);
  --section-y: clamp(3.75rem, 7vw, 6.5rem);
  --radius: 14px;
  --radius-sm: 9px;
  --header-h: 76px;

  --shadow-sm: 0 2px 8px rgba(7, 26, 51, .06);
  --shadow-md: 0 10px 30px rgba(7, 26, 51, .09);
  --shadow-lg: 0 22px 60px rgba(7, 26, 51, .16);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea { font: inherit; color: inherit; }
ul, ol { list-style: none; padding: 0; }
a { color: var(--navy-700); text-decoration-color: rgba(201, 162, 39, .5); text-underline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.18;
  color: var(--navy-800);
  font-weight: 700;
  letter-spacing: -.01em;
}

:focus-visible {
  /* gold-700 é o único tom que passa nos dois fundos: 4,9:1 no claro, 3,1:1 no navy */
  outline: 3px solid var(--gold-700);
  outline-offset: 3px;
  border-radius: 4px;
}

.sprite { position: absolute; width: 0; height: 0; overflow: hidden; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy-800);
  color: var(--white);
  padding: .8rem 1.2rem;
  border-radius: 0 0 var(--radius-sm) 0;
}
.skip-link:focus { left: 0; }

/* ---------- Utilitários ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }
.section--alt { background: var(--bg-alt); }

.section__head {
  max-width: 760px;
  margin: 0 auto clamp(2.2rem, 4vw, 3.4rem);
  text-align: center;
}
.section__head--left { text-align: left; margin-inline: 0; }

.section__title { font-size: var(--fs-h2); margin-top: .5rem; }
.section__title--light { color: var(--white); }

.section__desc {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}
.section__desc--light { color: rgba(255, 255, 255, .78); }

.eyebrow {
  font-family: var(--font-head);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-700);
}
.eyebrow--light { color: var(--gold-300); }

.ico { width: 20px; height: 20px; flex: none; }
.ico--lg { width: 26px; height: 26px; }
.ico--xl { width: 38px; height: 38px; }

/* ---------- Botões ---------- */
.btn {
  --btn-bg: transparent;
  --btn-fg: var(--navy-800);
  --btn-bd: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .9rem 1.6rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .95rem;
  line-height: 1.2;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 2px solid var(--btn-bd);
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background-color .18s var(--ease), color .18s var(--ease),
              border-color .18s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn:active { transform: translateY(0); }

.btn--sm { padding: .62rem 1.1rem; font-size: .85rem; }
.btn--block { display: flex; width: 100%; }

.btn--gold  { --btn-bg: var(--gold-500); --btn-fg: var(--navy-900); --btn-bd: var(--gold-500); }
.btn--gold:hover { --btn-bg: var(--gold-400); --btn-bd: var(--gold-400); }

.btn--navy  { --btn-bg: var(--navy-800); --btn-fg: var(--white); --btn-bd: var(--navy-800); }
.btn--navy:hover { --btn-bg: var(--navy-700); --btn-bd: var(--navy-700); }

.btn--outline { --btn-bd: var(--navy-800); --btn-fg: var(--navy-800); }
.btn--outline:hover { --btn-bg: var(--navy-800); --btn-fg: var(--white); }

.btn--outline-light { --btn-bd: rgba(255,255,255,.55); --btn-fg: var(--white); }
.btn--outline-light:hover { --btn-bg: rgba(255,255,255,.12); }

.btn--ghost { --btn-bd: rgba(255,255,255,.5); --btn-fg: var(--white); }
.btn--ghost:hover { --btn-bg: rgba(255,255,255,.1); --btn-bd: var(--white); }

.btn--wa { --btn-bg: var(--wa); --btn-fg: #04331A; --btn-bd: var(--wa); padding-block: 1.05rem; font-size: 1rem; }
.btn--wa:hover { --btn-bg: var(--wa-dark); --btn-bd: var(--wa-dark); --btn-fg: var(--white); }

/* =========================================================
   HEADER
   ========================================================= */
.header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 37, 69, .92);
  backdrop-filter: blur(10px);
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease), height .3s var(--ease);
}
.header.is-scrolled {
  height: 66px;
  background: rgba(7, 26, 51, .97);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .22);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.header__logo { display: flex; align-items: center; flex: none; }
.header__logo img { height: 42px; width: auto; object-fit: contain; }

.nav { display: flex; align-items: center; gap: clamp(1rem, 2.2vw, 2rem); }

.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(.9rem, 1.8vw, 1.7rem);
}

.nav__link {
  position: relative;
  font-family: var(--font-head);
  font-size: .92rem;
  font-weight: 500;
  color: rgba(255, 255, 255, .84);
  text-decoration: none;
  padding-block: .4rem;
  white-space: nowrap;
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .28s var(--ease);
}
.nav__link:hover, .nav__link.is-active { color: var(--white); }
.nav__link:hover::after, .nav__link.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__area {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}
/* o atributo hidden precisa vencer a regra de display acima */
.nav__area[hidden] { display: none; }
.nav__area .ico { width: 15px; height: 15px; color: var(--gold-400); }

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
}
.burger span {
  display: block;
  height: 2px;
  width: 24px;
  margin-inline: auto;
  background: var(--white);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  isolation: isolate;
  padding-top: calc(var(--header-h) + clamp(2.5rem, 6vw, 4.5rem));
  padding-bottom: clamp(3rem, 6vw, 5rem);
  background:
    radial-gradient(1100px 620px at 78% 10%, rgba(27, 65, 115, .55), transparent 60%),
    linear-gradient(165deg, var(--navy-900) 0%, var(--navy-800) 52%, var(--navy-700) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero__bg { position: absolute; inset: 0; z-index: -1; opacity: .5; }
.hero__route { width: 100%; height: 100%; }

.route-line {
  fill: none;
  stroke: var(--gold-500);
  stroke-width: 2;
  stroke-dasharray: 10 14;
  stroke-linecap: round;
  opacity: .65;
  animation: route-flow 18s linear infinite;
}
.route-dot { fill: var(--gold-400); opacity: .75; }
.route-dot--end { fill: var(--gold-300); }

@keyframes route-flow { to { stroke-dashoffset: -480; } }

.hero__inner {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero__title {
  font-size: var(--fs-h1);
  color: var(--white);
  margin-top: .7rem;
}

.hero__sub {
  font-family: var(--font-head);
  font-size: clamp(1.1rem, .95rem + .7vw, 1.5rem);
  font-weight: 500;
  font-style: italic;
  color: var(--gold-300);
  margin-top: .9rem;
}

.hero__lead {
  margin-top: 1.1rem;
  max-width: 52ch;
  color: rgba(255, 255, 255, .82);
  font-size: 1.08rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: 2rem;
}

.hero__pills {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
}
.hero__pills li {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .9rem;
  color: rgba(255, 255, 255, .82);
}
.hero__pills .ico { width: 16px; height: 16px; color: var(--gold-400); }

.hero__media { position: relative; justify-self: center; max-width: 460px; }

.hero__photo-wrap {
  position: relative;
  border-radius: 200px 200px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(180deg, rgba(201, 162, 39, .18), transparent 45%);
}
.hero__photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 162, 39, .35);
  border-radius: inherit;
  pointer-events: none;
}
.hero__photo { width: 100%; height: auto; object-fit: cover; }

.hero__badge {
  position: absolute;
  left: clamp(-1rem, -2vw, -2rem);
  bottom: 1.6rem;
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .85rem 1.15rem;
  background: var(--white);
  color: var(--navy-800);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-width: 88%;
}
.hero__badge .ico { color: var(--gold-600); }
.hero__badge strong { display: block; font-family: var(--font-head); font-size: .95rem; }
.hero__badge span { font-size: .78rem; color: var(--text-muted); line-height: 1.35; display: block; }

/* =========================================================
   NOSSA ESSÊNCIA
   ========================================================= */
.essencia__grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: clamp(1.6rem, 4vw, 3.2rem);
  align-items: start;
}
.essencia__text p + p { margin-top: 1.1rem; }
.essencia__text { font-size: 1.05rem; color: var(--text-muted); }
.essencia__text strong { color: var(--navy-800); }

.essencia__quote {
  padding: clamp(1.6rem, 3vw, 2.2rem);
  background: linear-gradient(160deg, var(--navy-800), var(--navy-700));
  color: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold-500);
  box-shadow: var(--shadow-md);
}
.essencia__quote .ico { color: var(--gold-400); margin-bottom: 1rem; }
.essencia__quote p {
  font-family: var(--font-head);
  font-size: 1.18rem;
  line-height: 1.45;
}
.essencia__quote strong { color: var(--gold-300); }
.essencia__quote span {
  display: block;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-size: .92rem;
  color: rgba(255, 255, 255, .75);
}

/* =========================================================
   MISSÃO / VISÃO / VALORES
   ========================================================= */
.mv__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1rem, 2.5vw, 1.8rem);
}

.mv__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.2rem);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.mv__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.mv__icon {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-400);
  margin-bottom: 1.1rem;
}
.mv__card h3 { font-size: var(--fs-h3); margin-bottom: .6rem; }
.mv__card p { color: var(--text-muted); }

.values__title {
  text-align: center;
  font-size: var(--fs-h3);
  margin-top: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1.8rem;
}

.values__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(.9rem, 2vw, 1.4rem);
}

.value {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.4rem;
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.value:hover { transform: translateY(-4px); border-color: var(--gold-500); box-shadow: var(--shadow-md); }
.value .ico { color: var(--gold-600); margin-bottom: .85rem; }
.value h4 { font-size: 1rem; margin-bottom: .35rem; }
.value p { font-size: .89rem; color: var(--text-muted); line-height: 1.55; }

/* =========================================================
   NOSSO COMPROMISSO
   ========================================================= */
.compromisso {
  position: relative;
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(27, 65, 115, .5), transparent 62%),
    linear-gradient(140deg, var(--navy-900), var(--navy-800));
  color: rgba(255, 255, 255, .85);
  overflow: hidden;
}
.compromisso::before {
  content: '';
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%);
  width: 460px;
  height: 460px;
  border: 1px solid rgba(201, 162, 39, .18);
  border-radius: 50%;
  pointer-events: none;
}
.compromisso::after {
  content: '';
  position: absolute;
  right: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  height: 300px;
  border: 1px dashed rgba(201, 162, 39, .22);
  border-radius: 50%;
  pointer-events: none;
}
.compromisso__inner { position: relative; z-index: 1; }

.compromisso__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: center;
}
.compromisso__text p + p { margin-top: 1.1rem; }
.compromisso__text { font-size: 1.05rem; }

.compromisso__promise {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius);
  backdrop-filter: blur(4px);
}
.promise__line {
  position: relative;
  padding-left: 1.6rem;
  color: rgba(255, 255, 255, .7);
}
.promise__line + .promise__line { margin-top: .9rem; }
.promise__line::before {
  content: '';
  position: absolute;
  left: 0;
  top: .72em;
  width: 10px;
  height: 2px;
  background: rgba(255, 255, 255, .45);
}
.promise__line--strong {
  margin-top: 1.4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, .16);
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.45;
}
.promise__line--strong::before {
  top: 1.95em;
  width: 14px;
  height: 3px;
  background: var(--gold-500);
}

/* =========================================================
   DIFERENCIAL
   ========================================================= */
.diff__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .9rem clamp(1.2rem, 3vw, 2.4rem);
  max-width: 980px;
  margin-inline: auto;
}
.diff {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
  padding: 1.1rem 1.25rem;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  border-left: 3px solid transparent;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .98rem;
  color: var(--navy-800);
  transition: border-color .25s var(--ease), background-color .25s var(--ease), transform .25s var(--ease);
}
.diff:hover { border-left-color: var(--gold-500); background: var(--gray-100); transform: translateX(4px); }
.diff .ico { color: var(--gold-600); margin-top: 2px; }

/* =========================================================
   PLANOS
   ========================================================= */
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2.2vw, 1.6rem);
  align-items: start;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(1.6rem, 3vw, 2.1rem);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-300); }

.plan--featured {
  background: linear-gradient(165deg, var(--navy-800), var(--navy-700));
  border-color: var(--gold-500);
  box-shadow: var(--shadow-lg);
  color: rgba(255, 255, 255, .85);
}
.plan--featured:hover { border-color: var(--gold-400); }
.plan--featured .plan__name { color: var(--white); }
.plan--featured .plan__for { color: rgba(255, 255, 255, .72); }
.plan--featured .plan__price { color: var(--white); }
.plan--featured .plan__currency,
.plan--featured .plan__period { color: var(--gold-300); }
.plan--featured .plan__inherit { color: var(--gold-300); border-color: rgba(255, 255, 255, .16); }
.plan--featured .plan__features li { color: rgba(255, 255, 255, .85); }
.plan--featured .plan__features .ico { color: var(--gold-400); }
.plan--featured .plan__icon { background: rgba(201, 162, 39, .18); color: var(--gold-300); }
.plan--featured .plan__bonus { background: rgba(201, 162, 39, .14); color: var(--gold-300); }

.plan__tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  padding: .35rem 1rem;
  background: var(--gold-500);
  color: var(--navy-900);
  font-family: var(--font-head);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
  white-space: nowrap;
}

.plan__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--gray-050);
  color: var(--gold-600);
  margin-bottom: 1.1rem;
}

.plan__name { font-size: var(--fs-h3); }
.plan__for {
  margin-top: .5rem;
  font-size: .92rem;
  color: var(--text-muted);
  min-height: 3.2em;
}

.plan__price {
  margin-top: 1.2rem;
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1;
  color: var(--navy-800);
  display: flex;
  align-items: baseline;
  gap: .18rem;
}
.plan__currency { font-size: 1.1rem; font-weight: 600; color: var(--gold-700); }
.plan__period { font-size: .95rem; font-weight: 500; color: var(--text-muted); }

.plan__inherit {
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--gold-700);
}

.plan__features {
  display: grid;
  gap: .7rem;
  margin-top: 1.2rem;
  margin-bottom: 1.8rem;
}
.plan:not(.plan--featured) .plan__features { padding-top: 1.2rem; border-top: 1px solid var(--border); }
.plan--featured .plan__features,
.plan:has(.plan__inherit) .plan__features { padding-top: 0; border-top: 0; }

.plan__features li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .93rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.plan__features .ico { width: 17px; height: 17px; margin-top: 3px; color: var(--gold-600); }

.plan__bonus {
  padding: .6rem .75rem;
  margin-top: .25rem;
  background: rgba(201, 162, 39, .1);
  border-radius: var(--radius-sm);
  font-weight: 600;
  color: var(--navy-800) !important;
}

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

.plans__note {
  margin-top: 2.4rem;
  text-align: center;
  color: var(--text-muted);
  font-size: .95rem;
}

/* =========================================================
   SOBRE A SÓCIA
   ========================================================= */
.socia__grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(1.8rem, 5vw, 4rem);
  align-items: center;
}

.socia__media { position: relative; }
.socia__media img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}
.socia__media::before {
  content: '';
  position: absolute;
  inset: -14px -14px 14px 14px;
  border: 2px solid var(--gold-500);
  border-radius: var(--radius);
  z-index: -1;
}

.socia__role {
  font-family: var(--font-head);
  font-size: .95rem;
  color: var(--gold-700);
  font-weight: 600;
  margin-top: .5rem;
}

.socia__quote {
  margin: 1.6rem 0;
  padding: 1.1rem 1.4rem;
  border-left: 3px solid var(--gold-500);
  background: var(--bg-alt);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--navy-800);
  line-height: 1.5;
}

.socia__content p { color: var(--text-muted); }
.socia__content > p + p { margin-top: 1rem; }
.socia__content .btn { margin-top: 1.8rem; }

/* =========================================================
   CONTATO
   ========================================================= */
.contato {
  background:
    radial-gradient(800px 480px at 85% 100%, rgba(27, 65, 115, .5), transparent 60%),
    linear-gradient(200deg, var(--navy-900), var(--navy-800));
  color: var(--white);
}

.contato__grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}

.contato__info { margin-top: 2rem; display: grid; gap: 1.15rem; }
.contato__info li { display: flex; align-items: flex-start; gap: .85rem; }
.contato__info .ico { color: var(--gold-400); margin-top: 3px; }
.contato__info strong {
  display: block;
  font-family: var(--font-head);
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--gold-300);
}
.contato__info span { color: rgba(255, 255, 255, .84); font-size: .98rem; }

.contato__social { display: flex; gap: .7rem; margin-top: 2rem; }
.contato__social a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .25);
  color: var(--white);
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.contato__social a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-2px);
}

/* ---------- Formulário ---------- */
.form {
  background: var(--white);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.4rem);
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 1.1rem;
}

.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.field label {
  display: block;
  font-family: var(--font-head);
  font-size: .85rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: .4rem;
}
.field label span { color: var(--navy-800); }

.field input,
.field textarea {
  width: 100%;
  padding: .8rem .95rem;
  background: var(--gray-050);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .97rem;
  color: var(--navy-800);
  margin-top: .3rem;
  min-height: 1em;
}

.field__err {
  margin-top: .5rem;
  font-size: .88rem;
  color: var(--navy-800);
  min-height: 1.1rem;
}

.field--checkboxes {
  display: grid;
  gap: .6rem;
}

.field--checkboxes .field__label {
  display: block;
  font-family: var(--font-head);
  font-size: .88rem;
  font-weight: 700;
  color: var(--navy-800);
}

.checkboxes {
  display: grid;
  gap: .65rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.checkboxes__item {
  display: flex;
  align-items: flex-start;
  gap: .7rem;
  padding: .85rem .95rem;
  border: 1px solid rgba(42, 51, 66, .14);
  border-radius: 12px;
  background: rgba(11, 37, 69, .03);
  transition: border-color .2s var(--ease), background-color .2s var(--ease);
  cursor: pointer;
}

.checkboxes__item:hover {
  border-color: rgba(11, 37, 69, .32);
  background: rgba(11, 37, 69, .06);
}

.checkboxes__item input {
  width: 18px;
  height: 18px;
  margin-top: .25rem;
  accent-color: var(--gold-500);
  flex-shrink: 0;
}

.checkboxes__item span {
  display: block;
  line-height: 1.45;
  color: var(--navy-800);
  font-size: .92rem;
  font-weight: 500;
}

.field--check {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: .6rem;
}
.field--check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--gold-500);
  padding: 0;
}
.field--check label {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: .85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}

.field--radios .radios {
  display: grid;
  gap: .85rem;
  margin-top: .75rem;
}

.radios__item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .95rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-800);
}

.radios__item input {
  width: 1.15rem;
  height: 1.15rem;
}

.field--check .field__err { grid-column: 1 / -1; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form__status {
  font-size: .9rem;
  text-align: center;
  min-height: 1.2em;
}
.form__status.is-ok { color: var(--success); font-weight: 600; }
.form__status.is-err { color: var(--error); font-weight: 600; }

#form-submit[disabled] { opacity: .65; cursor: progress; transform: none; box-shadow: none; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: var(--navy-900);
  color: rgba(255, 255, 255, .68);
  padding-top: clamp(2.8rem, 5vw, 4rem);
  font-size: .92rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: clamp(1.8rem, 4vw, 3rem);
  padding-bottom: 2.6rem;
}

.footer__brand img { height: 46px; width: auto; object-fit: contain; }
.footer__brand p { margin-top: 1rem; max-width: 34ch; font-style: italic; color: var(--gold-300); }
.footer__brand .contato__social { margin-top: 1.4rem; }

.footer h2 {
  font-size: .82rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer__nav ul,
.footer__contact ul { display: grid; gap: .6rem; }
.footer a { color: rgba(255, 255, 255, .68); text-decoration: none; transition: color .2s var(--ease); }
.footer a:hover { color: var(--gold-400); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .8rem 1.5rem;
  padding-block: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, .1);
  font-size: .82rem;
  color: rgba(255, 255, 255, .5);
}

/* =========================================================
   WHATSAPP FLUTUANTE
   ========================================================= */
.wa-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: .6rem;
  height: 58px;
  padding: 0 1.15rem;
  background: var(--wa);
  color: var(--white);
  border-radius: 999px;
  text-decoration: none;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .92rem;
  box-shadow: 0 10px 28px rgba(37, 211, 102, .4);
  transition: transform .22s var(--ease), background-color .22s var(--ease), box-shadow .22s var(--ease);
}
.wa-float .ico { width: 26px; height: 26px; }
.wa-float:hover { background: var(--wa-dark); transform: translateY(-3px) scale(1.03); }
.wa-float.is-raised { transform: translateY(-64px); }
.wa-float.is-raised:hover { transform: translateY(-67px) scale(1.03); }

/* =========================================================
   COOKIES
   ========================================================= */
.cookie {
  position: fixed;
  left: clamp(1rem, 3vw, 1.8rem);
  right: clamp(1rem, 3vw, 1.8rem);
  bottom: clamp(1rem, 3vw, 1.8rem);
  z-index: 95;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 760px;
  margin-inline: auto;
  padding: 1.1rem 1.4rem;
  background: rgba(7, 26, 51, .97);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(201, 162, 39, .3);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  color: rgba(255, 255, 255, .82);
  font-size: .87rem;
  transform: translateY(140%);
  transition: transform .45s var(--ease);
}
.cookie.is-visible { transform: translateY(0); }
.cookie[hidden] { display: none; }
.cookie p { flex: 1 1 320px; }
.cookie a { color: var(--gold-300); }
.cookie__actions { display: flex; gap: .6rem; flex: none; }

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

/* =========================================================
   RESPONSIVO
   ========================================================= */
@media (max-width: 1024px) {
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 340px; }
  .hero__badge { left: -.5rem; }
  .hero__content { text-align: left; }
  .essencia__grid,
  .compromisso__grid,
  .socia__grid,
  .contato__grid { grid-template-columns: 1fr; }
  .socia__media { max-width: 420px; }
  .plans { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .plan--featured { order: -1; }
  .plan__for { min-height: 0; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .checkboxes { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .burger { display: flex; }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1.2rem var(--gutter) 2rem;
    background: rgba(7, 26, 51, .99);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .35);
    transform: translateY(-140%);
    transition: transform .35s var(--ease);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { transform: translateY(0); }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__link {
    display: block;
    padding: .95rem .2rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
  }
  .nav__link::after { display: none; }
  .nav__cta { margin-top: 1.3rem; justify-content: center; padding-block: .85rem; }

  .diff__grid { grid-template-columns: 1fr; }
  .mv__grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  :root { --header-h: 66px; }

  .values__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .hero__media { max-width: 100%; }
  .hero__badge { position: static; margin-top: -2rem; margin-inline: auto; max-width: 100%; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .wa-float { height: 54px; padding: 0 1rem; }
  .wa-float__label { display: none; }
  .wa-float { padding: 0; width: 54px; justify-content: center; }

  .cookie { flex-direction: column; align-items: stretch; text-align: left; }
  /* em coluna, o flex-basis do parágrafo viraria altura — daí o auto */
  .cookie p { flex: 0 1 auto; }
  .cookie__actions .btn { flex: 1; }
}

/* =========================================================
   ACESSIBILIDADE / IMPRESSÃO
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .header, .wa-float, .cookie, .hero__bg, .form { display: none !important; }
  body { color: #000; background: #fff; }
  .hero, .compromisso, .contato, .footer { background: #fff !important; color: #000 !important; }
  .hero__title, .section__title--light { color: #000 !important; }
}
