/* ============================================================
   Clínica Aflore : landing
   Paleta salmão derivada da foto da equipe.
   Display: Fraunces  |  Corpo: Mulish
   ============================================================ */

:root {
  --coral:       #e0735a;
  --coral-deep:  #c7553c;
  --coral-soft:  #f0a188;
  --blush:       #f7cdbc;
  --peach-bg:    #fdf3ec;
  --peach-2:     #fbe7dc;
  --cream:       #fffaf6;
  --ink:         #43261d;
  --ink-soft:    #7c5648;
  --line:        #eed7c9;
  --espresso:    #2c1812;
  --white:       #fffdfb;

  --shadow-sm: 0 2px 10px rgba(120, 60, 40, .07);
  --shadow-md: 0 16px 44px rgba(140, 64, 42, .14);
  --shadow-lg: 0 30px 70px rgba(120, 52, 34, .20);

  --maxw: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 18px;

  /* marca-pétala coral usada nos eyebrows */
  --leaf: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C16.5 7 16.5 14 12 22 7.5 14 7.5 7 12 2Z' fill='%23e0735a'/%3E%3C/svg%3E");
}

/* -------- reset -------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--peach-bg);
  line-height: 1.7;
  font-size: 1.05rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }

/* -------- tipografia base -------- */
h1, h2, h3, .display {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.em { font-style: italic; color: var(--coral-deep); font-weight: 500; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--coral-deep);
}
.eyebrow::before {
  content: "";
  width: .85rem; height: 1.05rem;
  background: var(--leaf) center / contain no-repeat;
  flex: none;
}

/* -------- layout helpers -------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(2.6rem, 5vw, 4.4rem); }
.section--tint { background: var(--peach-2); }
.section-head { max-width: 46rem; margin-bottom: clamp(1.5rem, 3vw, 2.3rem); }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.05rem); margin-top: .85rem; }
.section-head p { color: var(--ink-soft); margin-top: 1rem; font-size: 1.1rem; }
.lede { font-size: 1.18rem; color: var(--ink-soft); }

/* -------- botões -------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: inherit; font-weight: 800; font-size: .98rem;
  padding: .92rem 1.6rem; border-radius: 999px;
  border: 1.5px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  letter-spacing: .01em;
}
.btn--primary { background: var(--coral); color: var(--white); box-shadow: 0 10px 24px rgba(199, 85, 60, .28); }
.btn--primary:hover { background: var(--coral-deep); transform: translateY(-2px); box-shadow: 0 16px 32px rgba(199, 85, 60, .34); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--coral); color: var(--coral-deep); transform: translateY(-2px); }
.btn--light { background: var(--white); color: var(--coral-deep); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn svg { width: 1.15em; height: 1.15em; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(253, 243, 236, .82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease, background .3s ease;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: inline-flex; align-items: center; gap: .55rem; }
.brand__mark { width: 30px; height: 34px; flex: none; }
.brand__name {
  font-family: "Playfair Display", serif; font-weight: 600; font-size: 1.6rem;
  letter-spacing: -0.01em; color: var(--ink);
}
.brand__name span { color: var(--coral-deep); }
.nav__links { display: flex; align-items: center; gap: 2rem; }
.nav__links a { font-weight: 600; font-size: .98rem; color: var(--ink); position: relative; padding-block: .4rem; }
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--coral); transition: width .22s ease;
}
.nav__links a:hover::after { width: 100%; }
.nav__cta { display: flex; align-items: center; gap: 1rem; }
.nav__toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .4rem;
  color: var(--ink);
}
.nav__toggle svg { width: 28px; height: 28px; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding-top: clamp(1.6rem, 3vw, 2.4rem); padding-bottom: clamp(2rem, 4vw, 3.2rem); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 55% at 82% 18%, rgba(240, 161, 136, .35), transparent 70%),
    radial-gradient(50% 50% at 8% 90%, rgba(247, 205, 188, .45), transparent 70%);
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.hero__loc {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--white); border: 1px solid var(--line);
  padding: .5rem 1rem; border-radius: 999px;
  font-size: .85rem; font-weight: 700; color: var(--ink-soft);
  box-shadow: var(--shadow-sm); margin-bottom: 1.5rem;
}
.hero__loc svg { width: 1.05rem; height: 1.05rem; color: var(--coral); }
.hero h1 { font-size: clamp(2.2rem, 4.6vw, 3.5rem); }
.hero__sub { margin-top: 1rem; max-width: 32rem; font-size: 1.06rem; color: var(--ink-soft); }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.5rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .7rem 1.8rem; margin-top: 1.6rem; }
.hero__trust div { display: flex; align-items: center; gap: .55rem; font-weight: 700; font-size: .92rem; color: var(--ink); }
.hero__trust svg { width: 1.25rem; height: 1.25rem; color: var(--coral); flex: none; }

/* moldura arco-pétala da foto */
.hero__media { position: relative; }
.hero__photo {
  position: relative;
  border-radius: 49% 49% 16px 16px / 60% 60% 16px 16px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero__badge {
  position: absolute; left: -1.2rem; bottom: 2.2rem;
  background: var(--white); border-radius: 16px; padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md); max-width: 14.5rem;
  display: flex; align-items: center; gap: .8rem;
}
.hero__badge svg { width: 2rem; height: 2rem; color: var(--coral); flex: none; }
.hero__badge strong { font-family: "Playfair Display", serif; font-size: 1.05rem; display: block; line-height: 1.2; }
.hero__badge span { font-size: .82rem; color: var(--ink-soft); }

/* faixa de assinatura "aflorar" */
.meaning { background: var(--espresso); color: #f6e3d8; }
.meaning .wrap { padding-block: clamp(2.4rem, 5vw, 3.4rem); text-align: center; }
.meaning p { font-family: "Playfair Display", serif; font-size: clamp(1.4rem, 3.2vw, 2.1rem); font-weight: 500; line-height: 1.4; max-width: 52rem; margin-inline: auto; color: #fbeee6; }
.meaning .em { color: var(--coral-soft); }

/* ============================================================
   SOBRE
   ============================================================ */
.about__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.about__media { position: relative; }
.about__media img {
  width: 100%; height: auto; aspect-ratio: 4 / 5; object-fit: cover; object-position: center top;
  border-radius: 16px 16px 49% 49% / 16px 16px 58% 58%;
  box-shadow: var(--shadow-md);
}
.about__body h2 { font-size: clamp(2rem, 4.4vw, 3rem); margin-top: .85rem; }
.about__body p { color: var(--ink-soft); margin-top: 1.2rem; font-size: 1.1rem; }
.about__sign { margin-top: 1.6rem; font-family: "Playfair Display", serif; font-style: italic; font-size: 1.3rem; color: var(--coral-deep); }

/* ============================================================
   ESPECIALIDADES
   ============================================================ */
.spec-group + .spec-group { margin-top: clamp(2.5rem, 5vw, 3.6rem); }
.spec-group__label {
  display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.6rem;
  font-family: "Playfair Display", serif; font-size: 1.5rem; color: var(--ink);
}
.spec-group__label::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.cards { display: grid; gap: 1.1rem; grid-template-columns: repeat(auto-fill, minmax(255px, 1fr)); }
.card {
  background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative; overflow: hidden;
}
.card::before {
  content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--coral-soft));
  transform: scaleX(0); transform-origin: left; transition: transform .25s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card__icon {
  width: 50px; height: 50px; border-radius: 50%; margin-bottom: 1.15rem;
  background: var(--blush); display: grid; place-items: center; color: var(--coral-deep);
}
.card__icon svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.22rem; }
.card p { margin-top: .55rem; font-size: .97rem; color: var(--ink-soft); line-height: 1.6; }

/* ============================================================
   FASES DA VIDA (sequência numerada)
   ============================================================ */
.phases { display: grid; gap: 1.4rem 2rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); margin-top: 1rem; }
.phase { position: relative; padding-top: 1.7rem; border-top: 1px solid var(--line); }
.phase::before { content: ""; position: absolute; top: -1px; left: 0; width: 46px; height: 3px; background: var(--coral); border-radius: 3px; }
.phase h3 { font-size: 1.3rem; }
.phase p { margin-top: .5rem; color: var(--ink-soft); font-size: 1rem; }

/* ============================================================
   EQUIPE
   ============================================================ */
.team { display: grid; gap: clamp(1.1rem, 2.2vw, 1.6rem); grid-template-columns: repeat(3, 1fr); }
.doc { background: var(--cream); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .22s ease, box-shadow .22s ease; }
.doc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.doc__photo { aspect-ratio: 1 / 1; overflow: hidden; background: var(--blush); }
.doc__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 15%; }
.doc h3 { font-size: 1.26rem; padding: 1.3rem 1.4rem 0; }
.doc__role { color: var(--coral-deep); font-weight: 700; font-size: .74rem; letter-spacing: .1em; text-transform: uppercase; margin-top: .25rem; padding: 0 1.4rem; }
.doc__creds { padding: 0 1.4rem; }
.doc > p:last-child { color: var(--ink-soft); margin-top: .85rem; font-size: .9rem; line-height: 1.6; padding: 0 1.4rem 1.5rem; }

/* ============================================================
   INSTAGRAM
   ============================================================ */
.insta { background: linear-gradient(135deg, var(--coral) 0%, var(--coral-soft) 100%); color: var(--white); }
.insta .wrap { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.8rem; padding-block: clamp(2.6rem, 5vw, 3.6rem); }
.insta__txt h2 { color: var(--white); font-size: clamp(1.8rem, 3.6vw, 2.5rem); }
.insta__txt p { margin-top: .5rem; font-size: 1.1rem; color: rgba(255, 255, 255, .92); }
.insta__handle { display: inline-flex; align-items: center; gap: .6rem; margin-top: 1rem; font-weight: 800; font-size: 1.1rem; }
.insta__handle svg { width: 1.4rem; height: 1.4rem; }

/* ============================================================
   LOCALIZAÇÃO
   ============================================================ */
.loc__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: stretch; }
.loc__info { align-self: center; }
.loc__list { margin-top: 1.8rem; display: grid; gap: 1.3rem; }
.loc__item { display: flex; gap: 1rem; }
.loc__item svg { width: 1.5rem; height: 1.5rem; color: var(--coral); flex: none; margin-top: .2rem; }
.loc__item strong { display: block; font-family: "Playfair Display", serif; font-size: 1.12rem; }
.loc__item span { color: var(--ink-soft); font-size: 1rem; }
.loc__map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 340px; border: 1px solid var(--line); }
.loc__map iframe { width: 100%; height: 100%; min-height: 340px; border: 0; display: block; }

/* ============================================================
   CTA FINAL
   ============================================================ */
.cta-final { background: var(--espresso); color: #f7e7dd; text-align: center; }
.cta-final .wrap { padding-block: clamp(4rem, 8vw, 6rem); }
.cta-final h2 { color: var(--white); font-size: clamp(2.1rem, 4.6vw, 3.2rem); max-width: 24rem; margin-inline: auto; }
.cta-final p { margin-top: 1.1rem; color: rgba(247, 231, 221, .82); font-size: 1.12rem; max-width: 34rem; margin-inline: auto; }
.cta-final .hero__actions { justify-content: center; margin-top: 2.2rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #20100b; color: rgba(247, 231, 221, .72); padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; font-size: .95rem; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2.5rem; }
.footer__brand .brand__name { color: var(--white); }
.footer__brand p { margin-top: 1rem; max-width: 22rem; line-height: 1.7; }
.footer h4 { color: var(--white); font-family: "Playfair Display", serif; font-size: 1.1rem; margin-bottom: 1rem; font-weight: 500; }
.footer a:hover { color: var(--coral-soft); }
.footer__col li + li { margin-top: .65rem; }
.footer__bottom { margin-top: 2.8rem; padding-top: 1.6rem; border-top: 1px solid rgba(255, 255, 255, .1); display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem; font-size: .85rem; }

/* ============================================================
   REVEAL
   ============================================================ */
/* só esconde/anima quando há JS (progressive enhancement): sem JS o conteúdo fica visível */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.js .reveal.in { opacity: 1; transform: none; }
.js .reveal[data-d="1"] { transition-delay: .08s; }
.js .reveal[data-d="2"] { transition-delay: .16s; }
.js .reveal[data-d="3"] { transition-delay: .24s; }

/* ============================================================
   RESPONSIVO
   ============================================================ */
@media (max-width: 940px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { max-width: 28rem; margin-inline: auto; order: -1; }
  .about__grid { grid-template-columns: 1fr; }
  .about__media { max-width: 26rem; }
  .team { grid-template-columns: 1fr 1fr; }
  .loc__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 760px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: inline-flex; }
  .site-header.open .nav__links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--cream); border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.2rem; box-shadow: var(--shadow-md);
  }
  .site-header.open .nav__links a { width: 100%; padding: .85rem 0; border-bottom: 1px solid var(--line); }
  .insta .wrap { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .team { grid-template-columns: 1fr; max-width: 22rem; margin-inline: auto; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__badge { left: 0; }
  .btn { width: 100%; justify-content: center; }
  .hero__actions { flex-direction: column; }
}

/* foco visível + movimento reduzido */
:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; border-radius: 4px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal, .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ============================================================
   LOGO / MARCA (imagens reais da Aflore)
   ============================================================ */
.brand { gap: .65rem; }
.brand__logo { height: 42px; width: auto; display: block; }
.brand__name { font-family: "Playfair Display", serif; font-weight: 600; font-size: 1.5rem; letter-spacing: .005em; color: var(--coral-deep); line-height: 1; }
.footer__logo { height: 104px; width: auto; margin: 0 auto 1.2rem; display: block; }

/* link pré-consulta no hero */
.hero__pre { margin-top: 1.1rem; font-size: .94rem; color: var(--ink-soft); }
.hero__pre a { color: var(--coral-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 1.5px; }
.hero__pre a:hover { color: var(--coral); }

/* ============================================================
   ESTRUTURA / NOSSO ESPAÇO
   ============================================================ */
.estrutura__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(2rem, 4vw, 3.8rem); align-items: center; }
.estrutura__photos { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.estrutura__photos figure { margin: 0; }
.estrutura__photos img { width: 100%; height: auto; aspect-ratio: 3 / 4; object-fit: cover; box-shadow: var(--shadow-md); border-radius: 16px; }
.estrutura__photos figure:first-child img { border-radius: 130px 16px 16px 16px; }
.estrutura__photos figure:last-child { margin-top: 2.4rem; }
.estrutura__photos figure:last-child img { border-radius: 16px 16px 130px 16px; }
.estrutura__list { margin-top: 1.6rem; display: grid; gap: .9rem; }
.estrutura__list li { display: flex; gap: .7rem; color: var(--ink-soft); font-size: 1.02rem; }
.estrutura__list svg { width: 1.25rem; height: 1.25rem; color: var(--coral); flex: none; margin-top: .28rem; }

/* ============================================================
   CRM / RQE EM DESTAQUE
   ============================================================ */
.doc__creds { display: flex; flex-wrap: wrap; gap: .45rem; justify-content: flex-start; margin-top: .85rem; }
.doc__creds span { font-weight: 800; font-size: .73rem; letter-spacing: .03em; padding: .34rem .72rem; border-radius: 999px; }
.doc__creds .crm { background: var(--blush); color: var(--coral-deep); }
.doc__creds .rqe { background: var(--coral); color: #fff; }

/* faixa pré-consulta */
.pre-band { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.4rem; box-shadow: var(--shadow-sm); }
.pre-band h3 { font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.pre-band p { color: var(--ink-soft); margin-top: .35rem; max-width: 38rem; }

@media (max-width: 940px) {
  .estrutura__grid { grid-template-columns: 1fr; }
  .estrutura__media { max-width: 30rem; margin-inline: auto; order: -1; }
}

/* link "Agendar" só dentro do menu mobile */
.nav__links a.nav__agendar { display: none; color: var(--coral-deep); font-weight: 800; }
@media (max-width: 760px) {
  .site-header.open .nav__links a.nav__agendar { display: block; }
}

/* grupo "Cirurgia minimamente invasiva": cards invertidos para destacar o diferencial */
.spec-group--surgery .cards { grid-template-columns: repeat(3, 1fr); }
.spec-group--surgery .card { background: var(--espresso); border-color: transparent; box-shadow: 0 18px 40px rgba(44, 24, 18, .18); }
.spec-group--surgery .card h3 { color: #fff; }
.spec-group--surgery .card p { color: rgba(247, 231, 221, .82); }
.spec-group--surgery .card__icon { background: rgba(255, 255, 255, .1); color: var(--coral-soft); }
.spec-group--surgery .card:hover { box-shadow: var(--shadow-lg); }
.spec-group--surgery .card::before { background: linear-gradient(90deg, var(--coral-soft), var(--coral)); }
@media (max-width: 880px) { .spec-group--surgery .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .spec-group--surgery .cards { grid-template-columns: 1fr; } }

/* ============================================================
   SERVIÇOS: menu clássico (sem ícones, sem cards)
   ============================================================ */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(2rem, 4vw, 2.8rem) clamp(2.5rem, 6vw, 4.5rem); }
.svc--wide { grid-column: 1 / -1; }
.svc h3 { font-size: 1.3rem; padding-bottom: .75rem; margin-bottom: 1rem; border-bottom: 1px solid var(--line); position: relative; }
.svc h3::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 46px; height: 2px; background: var(--coral); }
.svc ul { display: grid; gap: .6rem; }
.svc--wide .svc__cols { grid-template-columns: repeat(2, 1fr); gap: .6rem 1.6rem; }
.svc li { position: relative; padding-left: 1.2rem; color: var(--ink-soft); font-size: 1.02rem; line-height: 1.45; }
.svc li::before { content: ""; position: absolute; left: 0; top: .55em; width: 6px; height: 6px; border-radius: 50%; background: var(--coral-soft); }
@media (max-width: 760px) {
  .services-grid { grid-template-columns: 1fr; gap: 1.8rem; }
  .svc--wide .svc__cols { grid-template-columns: 1fr; }
}

/* ============================================================
   FORMULÁRIO DE AGENDAMENTO (lead -> CRM)
   ============================================================ */
.lead-card { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; background: var(--cream); border: 1px solid var(--line); border-radius: 22px; padding: clamp(1.8rem, 4vw, 3rem); box-shadow: var(--shadow-md); }
.lead-intro h2 { font-size: clamp(1.8rem, 3.6vw, 2.4rem); margin-top: .7rem; }
.lead-intro p { color: var(--ink-soft); margin-top: .9rem; }
.lead-benefits { margin-top: 1.4rem; display: grid; gap: .7rem; }
.lead-benefits li { display: flex; gap: .6rem; align-items: center; color: var(--ink); font-weight: 600; font-size: .96rem; }
.lead-benefits svg { width: 1.2rem; height: 1.2rem; color: var(--coral); flex: none; }
.lead-form { display: grid; gap: .85rem; position: relative; }
.lead-field { display: grid; gap: .35rem; font-weight: 700; font-size: .82rem; letter-spacing: .01em; color: var(--ink); }
.lead-field input, .lead-field textarea { font-family: inherit; font-size: 16px; font-weight: 400; color: var(--ink); background: var(--white); border: 1.5px solid var(--line); border-radius: 12px; padding: .8rem .9rem; transition: border-color .18s ease, box-shadow .18s ease; }
.lead-field input::placeholder, .lead-field textarea::placeholder { color: #b9a195; }
.lead-field input:focus, .lead-field textarea:focus { outline: none; border-color: var(--coral); box-shadow: 0 0 0 3px rgba(224, 115, 90, .15); }
.lead-field textarea { resize: vertical; min-height: 84px; }
.lead-hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.lead-submit { margin-top: .3rem; width: 100%; justify-content: center; }
.lead-submit[disabled] { opacity: .6; cursor: progress; }
.lead-msg { font-size: .9rem; font-weight: 700; min-height: 1.1em; margin: .1rem 0 0; }
.lead-msg.ok { color: #2e7d52; }
.lead-msg.err { color: var(--coral-deep); }
.lead-alt { font-size: .88rem; color: var(--ink-soft); margin: .2rem 0 0; }
.lead-alt a { color: var(--coral-deep); font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 820px) { .lead-card { grid-template-columns: 1fr; } }
