/* ================================================================
   NAYARA REBOUÇAS · v3 · Warm Luxury Health
   Paleta: Rose Antigo · Terracota suave · Off-white quente · Grafite
   Mobile-first · Sem ícones · Tipografia editorial
   ================================================================ */

/* ── TOKENS ─────────────────────────────────────────────────── */
:root {
  /* Rose — alma da marca */
  --r0:  #FDF5F5;   /* fundo rosado levíssimo */
  --r1:  #F2E2E3;   /* rose mist */
  --r2:  #D9A8AD;   /* rose médio */
  --r3:  #B8686F;   /* rose principal */
  --r4:  #8C4A51;   /* rose profundo */
  --r5:  #5C2B30;   /* rose escuro */

  /* Neutros quentes */
  --n0:  #FDFAF7;   /* off-white quente */
  --n1:  #F4EFE9;   /* creme */
  --n2:  #E5DDD5;   /* bege */
  --n3:  #C4BAB0;   /* cinza quente médio */
  --n4:  #8A827A;   /* cinza quente */
  --n5:  #4A4440;   /* grafite quente */
  --n6:  #28211E;   /* quase preto quente */

  /* Sistema */
  --white: #FFFFFF;
  --wa:    #25D366;

  /* Tipografia */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;

  /* Espaçamento */
  --gap-xs:  8px;
  --gap-sm:  16px;
  --gap-md:  24px;
  --gap-lg:  48px;
  --gap-xl:  80px;
  --gap-2xl: 120px;

  /* Raios */
  --rx-sm: 4px;
  --rx-md: 8px;
  --rx-lg: 16px;
  --rx-xl: 24px;

  /* Sombras */
  --sh-sm: 0 2px 16px rgba(40,33,30,.07);
  --sh-md: 0 6px 40px rgba(40,33,30,.10);
  --sh-lg: 0 20px 80px rgba(40,33,30,.13);

  /* Curvas */
  --ease: cubic-bezier(.16,1,.3,1);
}

/* ── RESET ───────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--n0);
  color: var(--n6);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; }
[id] { scroll-margin-top: 76px; }

/* ── CONTAINER ───────────────────────────────────────────────── */
.nr { width: 100%; max-width: 1100px; margin: 0 auto; padding: 0 20px; }
@media (min-width: 600px)  { .nr { padding: 0 32px; } }
@media (min-width: 1024px) { .nr { padding: 0 56px; } }

/* ── SEÇÃO BASE ──────────────────────────────────────────────── */
.s { padding: var(--gap-lg) 0; }
@media (min-width: 768px)  { .s { padding: var(--gap-xl) 0; } }
@media (min-width: 1024px) { .s { padding: var(--gap-2xl) 0; } }
.s--cream  { background: var(--n1); }
.s--dark   { background: var(--n6); }
.s--rose   { background: var(--r0); }

/* ── TIPOGRAFIA GLOBAL ───────────────────────────────────────── */
.eyebrow {
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--r3);
  display: block;
  margin-bottom: 12px;
}
.display {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.1;
  color: var(--n6);
}
.display em { font-style: italic; color: var(--r4); }
.body-text {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.82;
  color: var(--n4);
  font-weight: 300;
}

/* ── BOTÕES ──────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .05em;
  padding: 15px 30px;
  border-radius: var(--rx-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease), background .18s, color .18s, border-color .18s;
  min-height: 52px;
  white-space: nowrap;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
}
@media (min-width: 480px) { .btn { width: auto; } }

.btn--primary {
  background: var(--n6);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--n5);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}

.btn--rose {
  background: var(--r3);
  color: var(--white);
}
.btn--rose:hover {
  background: var(--r4);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(184,104,111,.3);
}

.btn--ghost {
  background: transparent;
  color: var(--n5);
  border: 1px solid var(--n2);
}
.btn--ghost:hover {
  border-color: var(--n5);
  transform: translateY(-1px);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,.25);
}
.btn--ghost-light:hover {
  border-color: rgba(255,255,255,.6);
  transform: translateY(-1px);
}

.btn:active { transform: translateY(0) !important; }

/* ── DIVISOR DECORATIVO ──────────────────────────────────────── */
.divider-rose {
  width: 36px;
  height: 2px;
  background: var(--r3);
  margin-bottom: 20px;
  border-radius: 2px;
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  background: var(--n1);
  padding: 72px 0 96px;
  position: relative;
  overflow: hidden;
}

/* Círculo decorativo de fundo */
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--r1) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -100px;
  width: 350px; height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--n2) 0%, transparent 70%);
  pointer-events: none;
}

@media (min-width: 768px)  { .hero { padding: 100px 0 120px; } }
@media (min-width: 1024px) { .hero { padding: 130px 0 150px; } }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .hero__grid { grid-template-columns: 1fr 1fr; gap: 56px; }
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 54fr 46fr; gap: 80px; }
}

/* foto acima em mobile */
@media (max-width: 767px) { .hero__visual { order: -1; } }

/* ── Texto hero ── */
.hero__tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--n4);
  border: 1px solid var(--n2);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero__headline {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 9vw, 4.2rem);
  font-weight: 400;
  line-height: 1.07;
  color: var(--n6);
  margin-bottom: 24px;
  letter-spacing: -.01em;
}
.hero__headline em {
  font-style: italic;
  color: var(--r4);
}

.hero__sub {
  font-family: var(--sans);
  font-size: clamp(14.5px, 2.5vw, 16px);
  line-height: 1.8;
  color: var(--n4);
  font-weight: 300;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
@media (min-width: 480px) {
  .hero__ctas { flex-direction: row; flex-wrap: wrap; }
}

.hero__locs {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.hero__loc {
  font-family: var(--sans);
  font-size: 12px;
  color: var(--n3);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 8px;
}
.hero__loc-dot {
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--r3);
  flex-shrink: 0;
}

/* ── Visual hero ── */
.hero__visual {
  display: flex;
  justify-content: center;
  position: relative;
}

.hero__frame {
  position: relative;
  width: min(320px, 82vw);
  aspect-ratio: 4/5;
}
@media (min-width: 768px) {
  .hero__frame { width: 100%; max-width: 440px; }
}

/* Decoração geométrica atrás da foto */
.hero__frame::before {
  content: '';
  position: absolute;
  top: 20px; right: -16px;
  bottom: -16px; left: 16px;
  border-radius: var(--rx-xl);
  border: 1.5px solid var(--r2);
  z-index: 0;
}

.hero__photo {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--rx-xl);
  overflow: hidden;
  background: var(--n2);
}
.hero__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}
.hero__photo-ph {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--n3);
  font-family: var(--sans);
  font-size: 12px;
  text-align: center;
  padding: 32px;
  line-height: 1.6;
}

/* Badge flutuante */
.hero__badge {
  position: absolute;
  z-index: 2;
  bottom: 28px; left: -24px;
  background: var(--white);
  border-radius: var(--rx-lg);
  padding: 16px 20px;
  box-shadow: var(--sh-md);
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 190px;
}
@media (max-width: 400px) {
  .hero__badge { left: 0; bottom: -24px; }
}

.hero__badge-accent {
  width: 3px; height: 40px;
  background: linear-gradient(to bottom, var(--r2), var(--r4));
  border-radius: 3px;
  flex-shrink: 0;
}
.hero__badge-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--n6);
  line-height: 1;
  display: block;
}
.hero__badge-label {
  font-family: var(--sans);
  font-size: 11px;
  color: var(--n3);
  font-weight: 300;
  display: block;
  margin-top: 2px;
}

/* ================================================================
   IDENTIFICAÇÃO EMOCIONAL
   ================================================================ */
.ident { background: var(--n0); }

.ident__head { margin-bottom: 44px; }
.ident__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400;
  line-height: 1.12;
  color: var(--n6);
}
.ident__title em { font-style: italic; color: var(--r4); }

/* Grid de cards */
.ident__grid {
  display: grid;
  grid-template-columns: 1fr;
  background: var(--n2);
  gap: 1px;
  border-radius: var(--rx-lg);
  overflow: hidden;
  margin-bottom: 40px;
  border: 1px solid var(--n2);
}
@media (min-width: 540px) { .ident__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .ident__grid { grid-template-columns: repeat(3, 1fr); } }

.ident__card {
  background: var(--n0);
  padding: 28px 24px 30px;
  transition: background .25s var(--ease);
  cursor: default;
}
.ident__card:hover { background: var(--r0); }

.ident__card-bar {
  width: 28px; height: 2px;
  background: var(--r3);
  border-radius: 2px;
  margin-bottom: 16px;
  transition: width .3s var(--ease);
}
.ident__card:hover .ident__card-bar { width: 44px; }

.ident__card-strong {
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--n6);
  display: block;
  margin-bottom: 6px;
  line-height: 1.4;
}
.ident__card-body {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--n4);
  font-weight: 300;
}

/* Fechamento */
.ident__close {
  background: var(--n6);
  border-radius: var(--rx-lg);
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ident__close::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184,104,111,.18) 0%, transparent 70%);
  pointer-events: none;
}
@media (min-width: 768px) { .ident__close { padding: 56px 80px; } }

.ident__close-main {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 12px;
}
.ident__close-main em { font-style: italic; color: var(--r2); }
.ident__close-sub {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--n3);
  font-weight: 300;
}

/* ================================================================
   SOBRE / APRESENTAÇÃO
   ================================================================ */
.about { background: var(--n1); }

.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
}
@media (min-width: 768px) {
  .about__grid {
    grid-template-columns: 1fr 1px 1fr;
    gap: 0 64px;
    align-items: start;
  }
}
@media (min-width: 1024px) { .about__grid { gap: 0 80px; } }

.about__sep {
  display: none;
  width: 1px;
  background: var(--n2);
  align-self: stretch;
  min-height: 300px;
}
@media (min-width: 768px) { .about__sep { display: block; } }

/* Coluna esquerda */
.about__quote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4vw, 2.1rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--n6);
  padding-left: 22px;
  border-left: 2px solid var(--r3);
  margin-bottom: 32px;
}

.about__p {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.85;
  color: var(--n4);
  font-weight: 300;
  margin-bottom: 16px;
}
.about__p:last-of-type { margin-bottom: 32px; }

/* Coluna direita — credenciais */
.about__creds { display: flex; flex-direction: column; gap: 0; }

.about__cred {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 22px 0;
  border-bottom: 1px solid var(--n2);
}
.about__cred:first-child { border-top: 1px solid var(--n2); }

.about__cred-n {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--r1);
  line-height: 1;
  min-width: 36px;
  flex-shrink: 0;
  margin-top: 2px;
}

.about__cred-strong {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  color: var(--n6);
  display: block;
  margin-bottom: 4px;
}
.about__cred-desc {
  font-family: var(--sans);
  font-size: 13px;
  color: var(--n3);
  font-weight: 300;
  line-height: 1.55;
}

/* ================================================================
   SERVIÇOS
   ================================================================ */
.services { background: var(--n0); }
.services__head { margin-bottom: 48px; }

.services__tagline {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-style: italic;
  color: var(--n3);
  margin-top: 10px;
  line-height: 1.6;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 540px) { .services__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .services__grid { grid-template-columns: repeat(3, 1fr); } }

.svc {
  border-radius: var(--rx-md);
  padding: 30px 26px 28px;
  border: 1px solid var(--n2);
  background: var(--n0);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .2s;
  position: relative;
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.svc:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: var(--r2);
}
.svc::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--r3), var(--r2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.svc:hover::after { transform: scaleX(1); }

/* Card em destaque */
.svc--hero {
  background: var(--n6);
  border-color: transparent;
  grid-row: span 1;
}
@media (min-width: 900px) { .svc--hero { grid-row: span 2; } }
.svc--hero:hover { border-color: transparent; }
.svc--hero::before {
  content: 'Destaque';
  position: absolute;
  top: 20px; right: 20px;
  font-family: var(--sans);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--r2);
  border: 1px solid var(--r4);
  padding: 4px 10px;
  border-radius: 100px;
}
.svc--hero .svc__num   { color: rgba(255,255,255,.08); font-size: 3.5rem; }
.svc--hero .svc__name  { color: var(--white); font-size: 1.6rem; }
.svc--hero .svc__desc  { color: rgba(255,255,255,.5); }
.svc--hero .svc__link  { color: var(--r2); }
.svc--hero::after { background: linear-gradient(to right, var(--r3), var(--r2)); }

.svc__num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--n2);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.svc__name {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--n6);
  line-height: 1.25;
  margin-bottom: 10px;
}

.svc__desc {
  font-family: var(--sans);
  font-size: 13.5px;
  line-height: 1.72;
  color: var(--n4);
  font-weight: 300;
  margin-bottom: 22px;
}

.svc__link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--r4);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .22s var(--ease);
}
.svc:hover .svc__link { gap: 10px; }

/* ================================================================
   FAQ
   ================================================================ */
.faq { background: var(--n1); }

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 768px) {
  .faq__grid { grid-template-columns: 2fr 3fr; gap: 72px; align-items: start; }
}

.faq__sticky { position: static; }
@media (min-width: 768px) { .faq__sticky { position: sticky; top: 90px; } }

.faq__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--n6);
  margin-bottom: 16px;
}
.faq__title em { font-style: italic; color: var(--r4); }

.faq__sub {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.8;
  color: var(--n4);
  font-weight: 300;
}

/* Accordion */
.faq__list { display: flex; flex-direction: column; }

.faq__item { border-bottom: 1px solid var(--n2); }
.faq__item:first-child { border-top: 1px solid var(--n2); }

.faq__q {
  width: 100%; background: none; border: none;
  text-align: left;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer;
  font-family: var(--sans); font-size: 15px; font-weight: 400; color: var(--n5);
  transition: color .18s;
  -webkit-tap-highlight-color: transparent;
  min-height: 52px;
}
.faq__q:hover { color: var(--r4); }
.faq__item.open .faq__q { color: var(--r4); }

.faq__ico {
  flex-shrink: 0; width: 24px; height: 24px;
  position: relative; display: flex; align-items: center; justify-content: center;
}
.faq__ico::before, .faq__ico::after {
  content: ''; position: absolute;
  background: var(--n3); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .22s, background .18s;
}
.faq__ico::before { width: 13px; height: 1.5px; }
.faq__ico::after  { width: 1.5px; height: 13px; }
.faq__item.open .faq__ico::before,
.faq__item.open .faq__ico::after { background: var(--r3); }
.faq__item.open .faq__ico::after  { transform: rotate(90deg); opacity: 0; }

.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .42s var(--ease);
}
.faq__a-inner {
  padding: 0 0 24px;
  font-family: var(--sans); font-size: 14.5px; line-height: 1.82; color: var(--n4); font-weight: 300;
}
.faq__item.open .faq__a { max-height: 320px; }

/* ================================================================
   PROVA SOCIAL
   ================================================================ */
.social { background: var(--n0); }
.social__head { margin-bottom: 48px; }

.social__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 400; line-height: 1.12; color: var(--n6);
}
.social__title em { font-style: italic; color: var(--r4); }

/* Stats */
.stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--n2);
  border: 1px solid var(--n2); border-radius: var(--rx-lg); overflow: hidden;
  margin-bottom: 52px;
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(4, 1fr); } }

.stat {
  background: var(--n0); padding: 28px 20px; text-align: center;
}
@media (min-width: 768px) { .stat { padding: 40px 24px; } }

.stat__n {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 300; color: var(--n6); line-height: 1; margin-bottom: 8px;
}
.stat__n em { font-style: normal; color: var(--r3); }
.stat__l {
  font-family: var(--sans); font-size: 11.5px;
  color: var(--n3); font-weight: 300; line-height: 1.5;
}

/* Depoimentos */
.testimonials {
  display: grid; grid-template-columns: 1fr; gap: 14px;
}
@media (min-width: 640px) { .testimonials { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }

.testi {
  border: 1px solid var(--n2); border-radius: var(--rx-lg);
  padding: 28px 24px; background: var(--n1);
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}
.testi:hover { box-shadow: var(--sh-sm); transform: translateY(-2px); }

.testi__stars {
  display: flex; gap: 3px; margin-bottom: 14px;
}
.testi__star {
  width: 10px; height: 10px; background: var(--r3);
  clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%);
}

.testi__txt {
  font-family: var(--serif); font-size: 1.05rem;
  font-style: italic; line-height: 1.68; color: var(--n5); margin-bottom: 18px;
}
.testi__name {
  font-family: var(--sans); font-size: 13px; font-weight: 500; color: var(--n6);
}
.testi__role {
  font-family: var(--sans); font-size: 11px; color: var(--n3);
  font-weight: 300; margin-top: 3px; letter-spacing: .03em;
}

/* ================================================================
   LEAD MAGNET
   ================================================================ */
.lead { background: var(--n6); position: relative; overflow: hidden; }
.lead::before {
  content: '';
  position: absolute; top: -150px; right: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,104,111,.12) 0%, transparent 65%);
  pointer-events: none;
}
.lead::after {
  content: '';
  position: absolute; bottom: -100px; left: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: radial-gradient(circle, rgba(184,104,111,.08) 0%, transparent 70%);
  pointer-events: none;
}

.lead__grid {
  display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center;
  position: relative; z-index: 1;
}
@media (min-width: 768px) { .lead__grid { grid-template-columns: 1fr 1fr; gap: 72px; } }

.lead__eyebrow {
  display: block; font-family: var(--sans);
  font-size: 10px; font-weight: 500; letter-spacing: .24em;
  text-transform: uppercase; color: var(--r2); margin-bottom: 14px;
}

.lead__title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 5vw, 2.7rem);
  font-weight: 400; line-height: 1.18; color: var(--white); margin-bottom: 20px;
}
.lead__title em { font-style: italic; color: var(--r2); }

.lead__desc {
  font-family: var(--sans); font-size: 14.5px;
  line-height: 1.8; color: rgba(255,255,255,.4); font-weight: 300;
}

/* Form card */
.lead__form {
  background: var(--white); border-radius: var(--rx-lg);
  padding: 36px 28px;
  box-shadow: var(--sh-lg);
}
@media (min-width: 768px) { .lead__form { padding: 44px 40px; } }

.lead__form-title {
  font-family: var(--serif); font-size: 1.5rem; font-weight: 400;
  color: var(--n6); margin-bottom: 4px;
}
.lead__form-sub {
  font-family: var(--sans); font-size: 12.5px;
  color: var(--n3); font-weight: 300; margin-bottom: 26px;
}

.fg { margin-bottom: 14px; }
.fg label {
  display: block; font-family: var(--sans); font-size: 10.5px;
  font-weight: 500; letter-spacing: .12em; text-transform: uppercase;
  color: var(--n4); margin-bottom: 8px;
}
.fg input {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--n2); border-radius: var(--rx-sm);
  font-family: var(--sans); font-size: 15px; color: var(--n6);
  background: var(--n1); outline: none; transition: border-color .18s, box-shadow .18s;
  -webkit-appearance: none;
  appearance: none;
}
.fg input:focus {
  border-color: var(--r3);
  box-shadow: 0 0 0 3px rgba(184,104,111,.12);
  background: var(--white);
}
.fg input::placeholder { color: var(--n2); }

.lead__form .btn { width: 100%; margin-top: 8px; }

.form-privacy {
  font-family: var(--sans); font-size: 11px; color: var(--n3);
  text-align: center; margin-top: 12px; font-weight: 300;
}

/* ================================================================
   CTA FINAL
   ================================================================ */
.cta-final { background: var(--r0); text-align: center; }

.cta-final__wrap { max-width: 600px; margin: 0 auto; }

.cta-final__title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 3.2rem);
  font-weight: 400; line-height: 1.12; color: var(--n6); margin-bottom: 18px;
}
.cta-final__title em { font-style: italic; color: var(--r4); }

.cta-final__sub {
  font-family: var(--sans); font-size: 15.5px;
  color: var(--n4); font-weight: 300; margin-bottom: 36px; line-height: 1.75;
}

/* ================================================================
   BOTÃO FLUTUANTE WHATSAPP
   ================================================================ */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--n6);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 24px rgba(40,33,30,.28);
  transition: transform .25s var(--ease), box-shadow .25s;
  text-decoration: none; -webkit-tap-highlight-color: transparent;
}
.float-wa:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 36px rgba(40,33,30,.35);
}
.float-wa svg { width: 26px; height: 26px; fill: var(--white); }
.float-wa::after {
  content: ''; position: absolute; inset: -5px; border-radius: 50%;
  border: 1.5px solid var(--n5); opacity: 0;
  animation: pulse 2.6s ease-out infinite;
}
@keyframes pulse {
  0%   { transform: scale(.85); opacity: .5; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ================================================================
   ANIMAÇÕES — IntersectionObserver
   ================================================================ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }

/* ================================================================
   MICRO — acessibilidade / foco
   ================================================================ */
:focus-visible {
  outline: 2px solid var(--r3);
  outline-offset: 3px;
  border-radius: 2px;
}
