/* =========================================================
   Clínica Matilde Estética Facial
   Design system: warm cream + espresso + champagne gold + dusty rose
   ========================================================= */

:root {
  /* ---------------------------------------------------------------
     Paleta "Verdinho Elegante" — definida pela Dra. Matilde (V1)
     Verde Sálvia #8FA998 · Forest Profundo #2D4A3E · Creme Suave #F9F6F0
     Nude Quente #E8DCC6 · Dourado Sutil #C8A882
     Sálvia, nude e dourado são DECORATIVOS: sobre creme dão 2,1–2,4:1 de
     contraste, então nunca carregam texto pequeno. Para texto existem as
     versões escuras (--gold-deep, --ink-soft, --ink-muted).
     --------------------------------------------------------------- */

  /* Fundos — creme, nunca branco puro */
  --cream:     #F9F6F0;   /* BACKGROUND dela */
  --cream-2:   #F0EBE0;
  --cream-3:   #E8DCC6;   /* NUDE QUENTE dela */
  --paper:     #FFFDF8;   /* branco quente para cards */

  /* Verde escuro — superfícies e texto */
  --esp-900:   #1E3529;
  --esp-800:   #2D4A3E;   /* FOREST PROFUNDO dela */
  --esp-700:   #3D5C4D;
  --esp-600:   #4E6E5E;
  --esp-500:   #5F806F;

  /* Acentos */
  --gold:      #C8A882;   /* DOURADO SUTIL dela — só decoração */
  --gold-deep: #8A6A3E;   /* versão para texto: 4,6:1 sobre creme */
  --rose:      #8FA998;   /* VERDE SÁLVIA dela — primary */
  --rose-soft: #C3D4C8;
  --nude:      #E8DCC6;
  --champ:     #EFE3CD;
  --sage:      #8FA998;
  --sage-deep: #5E7A68;
  --wa:        #25D366;   /* verde do WhatsApp — mantido de propósito */
  --wa-dark:   #1eb257;

  /* Texto */
  --ink:       #2D4A3E;   /* FOREST PROFUNDO dela — 9,0:1 sobre creme */
  --ink-soft:  #566B5E;   /* 5,3:1 */
  --ink-muted: #627369;   /* 4,7:1 */
  --on-esp:      #EEF3EC;
  --on-esp-soft: #BED0C3;

  --line:      rgba(45,74,62,.15);
  --line-soft: rgba(45,74,62,.08);

  --serif: "Cormorant Garamond", Georgia, serif;                 /* títulos */
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius:    10px;
  --radius-lg: 24px;      /* regra dela: bordas 24px+ */
  --shadow-sm: 0 2px 10px rgba(30,53,41,.06);
  --shadow:    0 18px 50px -22px rgba(30,53,41,.24);
  --shadow-lg: 0 40px 80px -30px rgba(30,53,41,.3);

  --maxw: 1160px;
  --gutter: clamp(20px, 5vw, 52px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.68;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  max-width: 100%;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(56px, 6.5vw, 100px); }
.bg-cream  { background: var(--cream); }
.bg-cream2 { background: var(--cream-2); }
.bg-paper  { background: var(--paper); }
.bg-esp    { background: var(--esp-800); color: var(--on-esp); }

/* ---------- Typography ---------- */
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: .002em; color: var(--ink); overflow-wrap: break-word; }
.bg-esp h1, .bg-esp h2, .bg-esp h3 { color: #fff; }

h2.title { font-size: clamp(2rem, 4.2vw, 3.2rem); line-height: 1.05; letter-spacing: 0; }
h3 { font-size: clamp(1.2rem, 1.7vw, 1.45rem); font-weight: 600; }

/* Emphasis: body italic serif; headings → gold word in the SAME serif (só a cor destaca) */
em, .accent-serif { font-style: italic; color: var(--esp-600); }
h1 em, h2 em, h3 em, h4 em, .title em {
  font-family: var(--serif); font-weight: 700; font-style: normal; letter-spacing: 0; color: var(--gold-deep); }
.bg-esp em { color: var(--rose-soft); }
.bg-esp h1 em, .bg-esp h2 em, .bg-esp h3 em { color: var(--gold); font-family: var(--serif); font-weight: 700; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: .8em;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.centered::after { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }
.bg-esp .eyebrow { color: var(--gold); }

.lead { font-size: clamp(1rem, 1.15vw, 1.12rem); color: var(--ink-soft); line-height: 1.7; }
.bg-esp .lead { color: var(--on-esp-soft); }

.section-head { max-width: 680px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 20px; }
.section-head p { margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  --bg: var(--esp-700); --fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  background: var(--bg); color: var(--fg);
  font-family: var(--sans); font-weight: 600; font-size: .92rem; letter-spacing: .02em;
  padding: 15px 30px; border: 1px solid transparent; border-radius: 50px;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
  will-change: transform; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(16,40,30,.5); }
.btn svg { width: 18px; height: 18px; }
/* Botão sálvia — a paleta da Dra. Matilde manda usar verde sálvia em botões e
   o dourado só em detalhes (5%). Usamos o tom mais profundo da sálvia porque
   o #8FA998 puro com texto branco dá só 2,5:1 de contraste. */
.btn-sage    { --bg: var(--sage-deep); --fg: #fff; }
.btn-sage:hover { background: var(--esp-700); color:#fff; }
.btn-wa      { --bg: var(--wa); --fg: #fff; }
.btn-wa:hover{ background: var(--wa-dark); }
.btn-outline { background: transparent; color: var(--esp-700); border-color: var(--line); }
.btn-outline:hover { background: var(--esp-700); color:#fff; border-color: var(--esp-700); }
.bg-esp .btn-outline { color: #fff; border-color: rgba(255,255,255,.28); }
.bg-esp .btn-outline:hover { background:#fff; color: var(--esp-800); }
.btn-lg { padding: 17px 38px; font-size: 1rem; }

/* Attention-grabbing WhatsApp CTA */
.btn-cta {
  --bg: #22c55e; --fg: #fff;
  position: relative; overflow: hidden;
  padding: 18px 40px; font-size: 1.05rem; font-weight: 700; letter-spacing: .01em;
  background: linear-gradient(135deg, #34e07a 0%, #22c55e 52%, #16a34a 100%);
  color: #fff; border: none;
  box-shadow: 0 14px 30px -10px rgba(22,163,74,.6);
  animation: ctaPulse 2.6s ease-in-out infinite;
}
.btn-cta .cta-ico {
  display: grid; place-items: center; width: 26px; height: 26px; border-radius: 50%;
  background: rgba(255,255,255,.22); animation: ctaWiggle 2.6s ease-in-out infinite;
}
.btn-cta .cta-ico svg { width: 16px; height: 16px; }
.btn-cta::after {
  content: ""; position: absolute; top: 0; left: -60%; width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
  transform: skewX(-18deg); animation: ctaShine 3.4s ease-in-out infinite;
}
.btn-cta:hover { background: linear-gradient(135deg, #3ded83 0%, #22c55e 55%, #15a047 100%);
  transform: translateY(-3px) scale(1.02); box-shadow: 0 20px 40px -10px rgba(22,163,74,.8); animation-play-state: paused; }
@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 14px 30px -10px rgba(22,163,74,.6), 0 0 0 0 rgba(34,197,94,.5); }
  50%      { box-shadow: 0 16px 34px -10px rgba(22,163,74,.7), 0 0 0 14px rgba(34,197,94,0); }
}
@keyframes ctaWiggle { 0%,88%,100% { transform: rotate(0); } 92% { transform: rotate(-12deg); } 96% { transform: rotate(12deg); } }
@keyframes ctaShine { 0%, 62% { left: -60%; } 100% { left: 130%; } }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: box-shadow .35s ease, padding .35s ease, background .35s ease;
  padding-block: 18px;
  background: var(--cream);
}
.site-header.scrolled {
  box-shadow: 0 6px 24px -14px rgba(16,40,30,.35), 0 1px 0 var(--line-soft);
  padding-block: 12px;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: nowrap; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand .mark {
  width: 44px; height: 44px; border-radius: 12px; flex: none;
  background: linear-gradient(150deg, var(--esp-600), var(--esp-800));
  display: grid; place-items: center; color: var(--gold);
  font-family: var(--serif); font-size: 1.5rem; font-weight: 700; line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(200,168,130,.4);
}
.brand .wm { display: flex; flex-direction: column; line-height: 1.05; }
.brand .wm strong { font-family: var(--serif); font-weight: 700; font-size: 1.24rem; letter-spacing: .01em; color: var(--ink); white-space: nowrap; }
.brand .wm span { font-size: .6rem; letter-spacing: .17em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; white-space: nowrap; }

.nav-links { display: flex; align-items: center; gap: 26px; flex-shrink: 0; }
.nav-links a { font-size: .9rem; font-weight: 500; color: var(--ink-soft); position: relative; transition: color .2s; white-space: nowrap; }
.nav-links a::after { content:""; position:absolute; left:0; bottom:-6px; width:0; height:1.5px; background: var(--gold); transition: width .3s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-toggle { display: none; background: none; border: none; width: 42px; height: 42px; }
.nav-toggle span { display:block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; transition: .3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: clamp(580px, 88vh, 860px);
  display: flex; align-items: center; color: var(--ink);
  background: linear-gradient(118deg, #DDE8DF 0%, #E9EFE6 40%, #F3F1E9 68%, var(--cream) 100%);
}
.hero-glow { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(44% 46% at 74% 32%, rgba(255,255,255,.7), rgba(255,255,255,0) 60%),
    radial-gradient(64% 60% at 82% 64%, rgba(143,169,152,.34), rgba(143,169,152,0) 60%); }
.hero-inner { position: relative; z-index: 3; width: 100%; max-width: 1180px; margin: 0 auto;
  padding: 128px clamp(22px, 5vw, 52px) 100px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 66px); align-items: center; }
.hero-content { max-width: 540px; animation: hero-up .9s cubic-bezier(.2,.7,.2,1) both; }
.hero-eyebrow { display: inline-flex; align-items: center; gap: .7em; font-size: .72rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 20px; }
.hero-eyebrow::before { content: ""; width: 30px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }
.hero-title { margin: 0 0 16px; line-height: 1.04; font-weight: 400; }
.hero-title .t-thin { display: block; font-family: var(--serif); font-weight: 500;
  font-size: clamp(1.7rem, 3vw, 2.5rem); letter-spacing: .01em; color: var(--esp-600); font-style: italic; }
.hero-title .t-bold { display: block; font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.3rem, 4.6vw, 3.7rem); letter-spacing: -.005em; color: var(--esp-800); margin-top: .02em; line-height: 1.02; }
.hero-title .t-bold em { font-style: normal; color: var(--gold-deep); font-family: var(--serif); font-weight: 700; font-size: 1em; letter-spacing: 0; }
.hero-sub { font-family: var(--sans); font-weight: 400; font-size: 1.05rem;
  color: var(--ink-soft); letter-spacing: 0; line-height: 1.65; max-width: 34em; margin-bottom: 26px; }
.hero-points { display: grid; gap: 11px; margin-bottom: 30px; }
.hero-points { margin-bottom: 30px; }
.hero-points li { position: relative; display: flex; gap: 11px; align-items: center; font-size: 1rem;
  line-height: 1.55; color: var(--ink-soft); font-weight: 500; }
.hero-points svg { flex: none; width: 20px; height: 20px; color: var(--gold-deep); }
/* hero specialties chips */
.hero-specs { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.hero-specs .hs-label { font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-deep); display: inline-flex; align-items: center; gap: .7em; }
.hero-specs .hs-label::before { content: ""; width: 24px; height: 1px; background: var(--gold); }
.hero-specs .hs-chips { display: flex; flex-wrap: wrap; gap: 9px; }
.hero-specs .hs-chips span { font-size: .84rem; font-weight: 600; color: var(--esp-700);
  padding: 7px 15px; border-radius: 50px; background: rgba(255,255,255,.65);
  border: 1px solid rgba(200,168,130,.35); box-shadow: var(--shadow-sm);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-media { position: relative; just-self: center; width: 100%; max-width: 440px;
  animation: hero-up 1s cubic-bezier(.2,.7,.2,1) .12s both; }
.hero-blob { position: absolute; z-index: 0; inset: -10% -8% -4% -8%; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(150,190,158,.55), rgba(150,190,158,0) 72%);
  filter: blur(6px); animation: heroGlow 7s ease-in-out infinite; }
.hero-frame-wrap { position: relative; z-index: 1; animation: heroFloat 6.5s ease-in-out infinite; }
.hero-ring { position: absolute; z-index: 0; top: 50%; left: 50%; width: 118%; aspect-ratio: 1;
  transform: translate(-50%, -50%); border-radius: 50%; border: 1px solid rgba(200,168,130,.4);
  pointer-events: none; animation: heroRing 30s linear infinite; }
.hero-ring::after { content: ""; position: absolute; top: -5px; left: 50%; width: 10px; height: 10px; margin-left: -5px;
  border-radius: 50%; background: var(--gold); box-shadow: 0 0 14px 3px rgba(200,168,130,.5); }
/* portrait photo framed in an elegant arch (keeps its own background) */
.hero-frame { position: relative; z-index: 1; width: 100%; aspect-ratio: 4/4.9;
  border-radius: 210px 210px 28px 28px; overflow: hidden;
  border: 7px solid #fff; background: #fff;
  box-shadow: 0 34px 74px -30px rgba(16,40,30,.5), 0 8px 22px -12px rgba(16,40,30,.28); }
.hero-frame img { position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 50% 14%; }
.hero-badge { position: absolute; z-index: 2; left: -18px; bottom: 34px;
  display: flex; align-items: center; gap: 12px; padding: 12px 20px 12px 16px; border-radius: 16px;
  background: #fff; box-shadow: var(--shadow); animation: heroBadge 6.5s ease-in-out .4s infinite; }
.hero-badge .hb-num { font-family: var(--serif); font-size: 2.5rem; line-height: .9; color: var(--esp-700); font-weight: 700; }
.hero-badge .btxt { font-size: .74rem; color: var(--ink-soft); line-height: 1.2; }
.hero-badge .btxt b { display: block; color: var(--ink); font-weight: 700; font-size: .82rem; }
.hero-badge2 { position: absolute; z-index: 2; right: -14px; top: 40px;
  display: flex; align-items: center; gap: 10px; padding: 10px 16px; border-radius: 14px;
  background: #fff; box-shadow: var(--shadow); animation: heroBadge 6.5s ease-in-out 1s infinite; }
.hero-badge2 .stars { color: var(--gold); font-size: .8rem; letter-spacing: 1px; line-height: 1; }
.hero-badge2 b { font-family: var(--serif); font-weight: 700; color: var(--esp-700); font-size: 1rem; }
.hero-badge2 span { display: block; font-size: .66rem; color: var(--ink-muted); letter-spacing: .04em; }
.hero-wave { position: absolute; left: 0; bottom: -1px; z-index: 4; width: 100%;
  height: clamp(46px, 6vw, 88px); color: var(--cream-2); pointer-events: none; display: block; }
@keyframes hero-up { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes heroGlow { 0%,100% { opacity: .5; transform: scale(1); } 50% { opacity: .8; transform: scale(1.04); } }
@keyframes heroBadge { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes heroRing { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ---------- Trust strip ---------- */
.trust { border-bottom: 1px solid var(--line-soft); background: var(--cream-2); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding-block: 34px; }
.trust-item { display: flex; align-items: center; gap: 14px; justify-content: center; text-align: left; }
.trust-item svg { width: 27px; height: 27px; color: var(--gold-deep); flex: none; }
.trust-item .t { font-family: var(--serif); font-size: 1.35rem; font-weight: 700; color: var(--ink); line-height: 1.05; }
.trust-item .s { font-size: .82rem; color: var(--ink-muted); }
.trust-item + .trust-item { border-left: 1px solid var(--line-soft); }

/* ============================================================
   DIFERENCIAIS (icon boxes)
   ============================================================ */
.dif-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 46px; }
.dif-card { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 30px 22px; text-align: center; transition: transform .35s ease, box-shadow .35s ease;
  position: relative; overflow: hidden; }
.dif-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dif-card .dico { width: 58px; height: 58px; border-radius: 50%; margin: 0 auto 16px;
  display: grid; place-items: center; color: var(--esp-700);
  background: linear-gradient(150deg, var(--rose-soft), var(--champ));
  box-shadow: inset 0 0 0 1px rgba(200,168,130,.22); transition: transform .4s cubic-bezier(.2,.8,.2,1), background .4s, color .4s; }
.dif-card:hover .dico { transform: translateY(-2px) scale(1.08); background: linear-gradient(150deg, var(--gold), var(--gold-deep)); color: #fff; }
.dif-card .dico svg { width: 28px; height: 28px; stroke-width: 1.7; }
.dif-card h3 { font-size: 1.12rem; margin-bottom: 6px; }
.dif-card p { font-size: .86rem; color: var(--ink-soft); line-height: 1.5; }

/* ============================================================
   PROCEDIMENTOS grid
   ============================================================ */
.proc-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 46px; }
.proc-card {
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 24px 22px; transition: transform .35s ease, box-shadow .35s ease, border-color .35s;
  position: relative; overflow: hidden;
}
.proc-card::after { content:""; position:absolute; left:0; top:0; height:100%; width:3px; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform .35s ease; }
.proc-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: transparent; }
.proc-card:hover::after { transform: scaleY(1); }
.proc-card .tico { width: 50px; height: 50px; border-radius: 13px; margin-bottom: 16px;
  display: grid; place-items: center; color: var(--esp-700);
  background: linear-gradient(150deg, #DCE7DE, #C3D4C8);
  box-shadow: inset 0 0 0 1px rgba(200,168,130,.18), 0 6px 16px -10px rgba(30,74,55,.4);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), background .4s ease, color .4s ease, box-shadow .4s ease; }
.proc-card .tico svg { width: 26px; height: 26px; stroke-width: 1.8; }
.proc-card:hover .tico { transform: translateY(-2px) scale(1.1) rotate(-5deg);
  background: linear-gradient(150deg, var(--gold), var(--gold-deep)); color: #fff;
  box-shadow: 0 12px 24px -8px rgba(200,168,130,.7); }
.proc-card h3 { font-size: 1.08rem; margin-bottom: 6px; line-height: 1.2; }
.proc-card p { font-size: .85rem; color: var(--ink-soft); line-height: 1.55; }
.proc-more { text-align: center; margin-top: 44px; }
.proc-more .q { font-family: var(--serif); font-size: clamp(1.5rem,3vw,2.1rem); color: var(--esp-700); max-width: 18em; margin: 0 auto 22px; line-height: 1.25; }
.proc-more .q em { font-family: var(--sans); font-weight: 700; font-style: normal; color: var(--gold-deep); }

/* ============================================================
   DESTAQUE splits
   ============================================================ */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px, 5vw, 72px); align-items: center; }
.split.rev .split-media { order: -1; }
.split-media { position: relative; max-width: 480px; width: 100%; margin-inline: auto; }
.split-media > img, .split-media .ph { border-radius: 16px 16px 110px 16px; box-shadow: var(--shadow-lg); aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.split.rev .split-media > img, .split.rev .split-media .ph { border-radius: 16px 16px 16px 110px; }
.split-media .tag {
  position: absolute; right: -18px; top: 28px; background: var(--gold); color: #233A2F;
  font-family: var(--serif); font-size: 1.15rem; font-weight: 700; padding: 14px 22px; border-radius: 12px;
  box-shadow: var(--shadow); text-align: center; line-height: 1.1; }
.split-media .tag small { display:block; font-family: var(--sans); font-size: .6rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 700; opacity:.7; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 26px; }
.chip { font-size: .82rem; font-weight: 600; padding: 8px 16px; border-radius: 50px; background: rgba(200,168,130,.12); border: 1px solid rgba(200,168,130,.28); color: var(--esp-700); }
.bg-esp .chip { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.18); color: var(--on-esp); }

.feat-list { display: grid; gap: 15px; margin-top: 28px; }
.feat-list li { display: flex; gap: 15px; align-items: flex-start; }
.feat-list .ck { flex:none; width: 30px; height: 30px; border-radius: 50%; background: var(--esp-700); color: var(--gold); display:grid; place-items:center; margin-top:2px; }
.feat-list .ck svg { width: 15px; height: 15px; }
.feat-list p { font-size: .97rem; color: var(--ink-soft); }
.feat-list b { color: var(--ink); font-weight: 700; }
.bg-esp .feat-list .ck { background: var(--gold); color: var(--esp-800); }
.bg-esp .feat-list p { color: var(--on-esp); }
.bg-esp .feat-list b { color: #fff; }
.feat-note { font-size: .84rem; color: var(--ink-muted); border-left: 2px solid var(--gold); padding-left: 16px; margin: 22px 0; font-style: italic; }
.bg-esp .feat-note { color: var(--on-esp-soft); }

/* soft photo card for featured images (real photos, cover) */
.ph-card { position: relative; border-radius: 24px; overflow: hidden; aspect-ratio: 4/5; box-shadow: var(--shadow-lg); border: 6px solid #fff; }
.ph-card img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   PLANOS (Bronze / Prata / Ouro)
   ============================================================ */
.tier-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; align-items: stretch; }
.tier { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  display: flex; flex-direction: column; transition: transform .35s ease, box-shadow .35s ease; }
.tier:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.tier .medal { width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; margin-bottom: 16px;
  color: #fff; box-shadow: var(--shadow-sm); }
.tier-bronze .medal { background: linear-gradient(150deg, #CD9A6B, #A9713F); }
.tier-prata  .medal { background: linear-gradient(150deg, #C9CDD2, #9AA1A9); }
.tier-ouro   .medal { background: linear-gradient(150deg, #E6C463, #BE9235); }
.tier .medal svg { width: 24px; height: 24px; }
.tier h3 { font-size: 1.5rem; margin-bottom: 4px; }
.tier .tsub { font-size: .84rem; color: var(--ink-muted); margin-bottom: 20px; }
.tier ul { display: grid; gap: 10px; margin-top: 4px; }
.tier li { display: flex; gap: 10px; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); }
.tier li svg { flex: none; width: 16px; height: 16px; color: var(--gold-deep); margin-top: 3px; }
.tier .plus { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-deep); margin: 18px 0 4px; }
.tier-ouro { border-color: transparent; box-shadow: 0 20px 50px -24px rgba(168,135,94,.45); background: linear-gradient(180deg, #FFFDF8, #FFFFFF); outline: 1.5px solid rgba(200,168,130,.4); }
.tier-flag { position: absolute; top: 16px; right: -34px; transform: rotate(45deg); background: var(--gold); color: #233A2F;
  font-size: .64rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; padding: 5px 40px; box-shadow: var(--shadow-sm); }

/* ============================================================
   RESULTADOS (before/after marquee + counters)
   ============================================================ */
.proof { margin-top: 12px; }
.proof-lead { text-align:center; font-size: .92rem; color: var(--ink-muted); margin-bottom: 26px; letter-spacing: .02em; }
.marquee { position: relative; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.marquee + .marquee { margin-top: 18px; }
/* rótulo de cada faixa de antes e depois */
.proof-row-head { text-align: center; margin: 34px auto 14px; max-width: 720px; padding-inline: 20px; }
.proof-row-head:first-child { margin-top: 0; }
.prh-label { display: flex; align-items: center; justify-content: center; gap: 12px;
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); }
.prh-label::before, .prh-label::after { content: ""; width: 30px; height: 1px; background: var(--gold); }
.prh-note { display: block; margin-top: 7px; font-size: .8rem; color: var(--ink-muted); line-height: 1.5; }
.bg-esp .prh-note { color: var(--on-esp-soft); }
.marquee-track { display: flex; gap: 18px; width: max-content; animation: scroll-x 70s linear infinite; }
.marquee-track.rev { animation-direction: reverse; animation-duration: 82s; }
/* faixas mais longas precisam de mais tempo para manter a mesma velocidade */
#marqueeB { animation-duration: 104s; }
#marqueeC { animation-duration: 92s; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.shot { flex: none; width: 300px; border-radius: 20px; overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line-soft); background:#fff; }
.shot img { width: 100%; height: 300px; object-fit: cover; object-position: center; }
.shot.tall { width: 210px; }
.shot.tall img { height: 340px; }
@keyframes scroll-x { to { transform: translateX(-50%); } }

.counters { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-top: 60px; }
.counter { text-align: center; padding: 26px 16px; border-radius: var(--radius-lg); background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); }
.bg-cream2 .counter, .bg-cream .counter { background: var(--paper); border-color: var(--line-soft); box-shadow: var(--shadow-sm); }
.counter .num { font-family: var(--serif); font-size: clamp(2.4rem, 4vw, 3.2rem); font-weight: 700; line-height: 1; color: var(--gold-deep); }
.counter .lbl { font-size: .86rem; color: var(--ink-soft); margin-top: 8px; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-media { position: relative; max-width: 440px; width: 100%; margin-inline: auto; }
.about-media .ph {
  border-radius: 20px; aspect-ratio: 4/5; overflow: hidden;
  background: radial-gradient(120% 100% at 50% 15%, #EAF0E8, #D3E1CB 60%, #C2D6B7);
  box-shadow: var(--shadow-lg); position: relative; }
.about-media .ph img { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); height: 99%; width: auto; max-width: none; object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(16,40,30,.18)); }
.about-media .crp {
  position: absolute; left: -20px; bottom: 30px; background: var(--esp-700); color: #fff;
  padding: 16px 22px; border-radius: 14px; box-shadow: var(--shadow); text-align:center; z-index: 3; }
.about-media .crp .n { font-family: var(--serif); font-size: 2rem; font-weight:700; line-height:1; color: var(--gold); }
.about-media .crp .l { font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-esp-soft); margin-top:4px; }
.about-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 40px; margin-top: 30px; }
.about-cols h4 { font-family: var(--sans); font-size: .76rem; letter-spacing:.14em; text-transform: uppercase; color: var(--gold-deep); font-weight: 700; margin-bottom: 14px; }
.mini-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink-soft); margin-bottom: 9px; }
.mini-list .d { flex:none; width:6px; height:6px; border-radius:50%; background: var(--gold); margin-top: 9px; }
.about blockquote { font-family: var(--serif); font-size: clamp(1.25rem,2.2vw,1.65rem); font-style: italic; color: var(--esp-600); line-height: 1.4; margin: 26px 0; padding-left: 22px; border-left: 3px solid var(--gold); }
/* refined credential badges (substitui a linha CRBM em caixa alta dourada) */
.cred-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }
.cred-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 600;
  color: var(--esp-700); background: rgba(200,168,130,.1); border: 1px solid rgba(200,168,130,.34);
  padding: 7px 15px; border-radius: 50px; }
.cred-badge svg { width: 15px; height: 15px; color: var(--gold-deep); flex: none; }
.about .lead { font-size: .93rem; line-height: 1.66; }

/* ============================================================
   CTA OFERTA band
   ============================================================ */
.offer { position: relative; overflow: hidden; text-align: center; }
.offer .container { position: relative; z-index: 2; }
.offer h2 { color: #fff; font-size: clamp(1.9rem, 4vw, 3rem); max-width: 16em; margin: 0 auto 18px; line-height: 1.14; }
.offer p.lead { max-width: 40em; margin: 0 auto; }
.offer-gift { display: inline-flex; align-items: center; gap: 12px; margin-top: 24px; padding: 14px 26px; border-radius: 50px;
  background: rgba(200,168,130,.16); border: 1px solid rgba(200,168,130,.4); color: var(--gold); font-weight: 600; font-size: .95rem; }
.offer-gift svg { width: 22px; height: 22px; }
.offer-install { margin-top: 18px; font-size: .95rem; color: var(--on-esp-soft); }
.offer-install b { color: #fff; }
.offer .btn-cta { margin-top: 30px; }

/* ============================================================
   AMBIENTE gallery
   ============================================================ */
.amb-points { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }
.amb-points span { display: inline-flex; align-items: center; gap: 8px; font-size: .88rem; font-weight: 600; color: var(--esp-700);
  padding: 9px 18px; border-radius: 50px; background: var(--paper); border: 1px solid var(--line-soft); box-shadow: var(--shadow-sm); }
.amb-points svg { width: 16px; height: 16px; color: var(--gold-deep); }
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; gap: 14px; margin-top: 42px; }
.gallery figure { overflow: hidden; border-radius: var(--radius-lg); position: relative; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.8,.2,1); }
.gallery figure:hover img { transform: scale(1.07); }
.gallery .big { grid-column: span 2; grid-row: span 2; }
.gallery .tall { grid-row: span 2; }
.gallery figure::after { content:""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(14,36,26,.5)); opacity:0; transition: opacity .4s; }
.gallery figure:hover::after { opacity: 1; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-accordion { max-width: 780px; margin: 46px auto 0; display: grid; gap: 12px; }
.faq-q { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); overflow: hidden; transition: box-shadow .3s ease, border-color .3s ease; }
.faq-q[open] { box-shadow: var(--shadow); border-color: transparent; }
.faq-q summary { list-style: none; cursor: pointer; padding: 20px 24px; display: flex; align-items: center;
  justify-content: space-between; gap: 18px; font-family: var(--serif); font-size: 1.2rem; font-weight: 600;
  color: var(--ink); transition: color .2s ease; }
.faq-q summary::-webkit-details-marker { display: none; }
.faq-q summary:hover, .faq-q[open] summary { color: var(--esp-700); }
.faq-q summary::after { content: ""; flex: none; width: 10px; height: 10px; margin-right: 3px;
  border-right: 2.5px solid var(--gold-deep); border-bottom: 2.5px solid var(--gold-deep);
  transform: rotate(45deg) translate(-2px, -2px); transition: transform .3s ease; }
.faq-q[open] summary::after { transform: rotate(-135deg) translate(-1px, -1px); }
.faq-a { padding: 0 24px 22px; }
.faq-a p { margin: 0; font-size: .95rem; color: var(--ink-soft); line-height: 1.64; }
.faq-q[open] .faq-a { animation: faqOpen .35s ease; }
@keyframes faqOpen { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
.faq-cta { text-align: center; margin-top: 42px; }
.faq-cta p { color: var(--ink-soft); font-size: 1.02rem; margin-bottom: 18px; }

/* ============================================================
   CONTACT + FOOTER
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,6vw,80px); align-items: center; }
.contact-list { display: grid; gap: 8px; margin-top: 30px; }
.contact-list a, .contact-list .ci { display: flex; align-items: center; gap: 16px; padding: 16px 20px; border-radius: 12px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); transition: background .25s, transform .25s; }
.contact-list a:hover { background: rgba(255,255,255,.1); transform: translateX(4px); }
.contact-list .ic { width: 44px; height: 44px; border-radius: 50%; background: rgba(200,168,130,.16); color: var(--gold); display:grid; place-items:center; flex:none; }
.contact-list .ic svg { width: 20px; height: 20px; }
.contact-list a > span:last-child, .contact-list .ci > span:last-child { display: flex; flex-direction: column; gap: 3px; }
.contact-list .k { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--on-esp-soft); }
.contact-list .v { display: block; font-size: 1rem; color: #fff; font-weight: 600; }
.contact-cta { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg); padding: clamp(30px,4vw,48px); text-align: center; }
.contact-cta .eyebrow { justify-content: center; margin-bottom: 18px; }
.contact-cta h3 { color:#fff; font-size: clamp(1.6rem,3vw,2.3rem); margin-bottom: 14px; }
.contact-cta p { color: var(--on-esp-soft); margin-bottom: 26px; }
.map-wrap { margin-top: 18px; border-radius: 12px; overflow:hidden; border:1px solid rgba(255,255,255,.12); }
.map-wrap iframe { display:block; width:100%; height: 240px; border:0; filter: grayscale(.2) contrast(1.03); }

.site-footer { background: var(--esp-900); color: var(--on-esp-soft); padding-block: 54px 30px; }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 30px; flex-wrap: wrap; padding-bottom: 34px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { max-width: 360px; }
.footer-brand .brand .wm strong { color: #fff; }
.footer-brand p { margin-top: 16px; font-size: .9rem; line-height: 1.6; }
.footer-social { display: flex; gap: 12px; margin-top: 20px; }
.footer-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); display: grid; place-items: center; color: var(--on-esp-soft); transition: .25s; }
.footer-social a:hover { background: var(--gold); color: var(--esp-900); border-color: var(--gold); transform: translateY(-3px); }
.footer-social svg { width: 19px; height: 19px; }
.footer-nav { display: flex; gap: 50px; flex-wrap: wrap; }
.footer-nav h5 { font-family: var(--sans); font-size: .74rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; font-weight: 700; }
.footer-nav a { display: block; font-size: .9rem; margin-bottom: 10px; color: var(--on-esp-soft); transition: color .2s; }
.footer-nav a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 22px; font-size: .8rem; color: var(--on-esp-soft); }
.footer-bottom a { color: var(--rose-soft); }

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 9px;
  height: 54px; padding: 0 22px 0 15px; border-radius: 50px;
  background: var(--wa); color: #fff; font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  box-shadow: 0 12px 30px -8px rgba(37,211,102,.6);
  transition: transform .3s ease, box-shadow .3s ease;
  animation: wa-pulse 2.6s ease-out infinite;
}
.wa-float:hover { transform: scale(1.04) translateY(-2px); }
.wa-float svg { width: 26px; height: 26px; flex: none; }
@media (max-width: 420px) { .wa-float { right: 14px; bottom: 14px; padding: 0 18px 0 13px; height: 50px; font-size: .9rem; } }
@keyframes wa-pulse { 0%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5);} 70%{ box-shadow: 0 0 0 18px rgba(37,211,102,0);} 100%{ box-shadow: 0 0 0 0 rgba(37,211,102,0);} }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1); }
.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; }

/* ---------- Lightbox ---------- */
.gallery img, .shot img, .ph-card img { cursor: zoom-in; }
.lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center;
  padding: clamp(16px, 4vw, 44px); background: rgba(10,26,18,.92); backdrop-filter: blur(5px); -webkit-backdrop-filter: blur(5px);
  cursor: zoom-out; opacity: 0; transition: opacity .3s ease; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: min(94vw, 1040px); max-height: 90vh; width: auto; height: auto; border-radius: 10px;
  box-shadow: 0 40px 90px -20px rgba(0,0,0,.6); cursor: default; animation: lbIn .35s cubic-bezier(.2,.8,.2,1); }
@keyframes lbIn { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: none; } }
.lightbox-close { position: absolute; top: clamp(14px,3vw,24px); right: clamp(14px,3vw,26px);
  width: 46px; height: 46px; border-radius: 50%; border: none; background: rgba(255,255,255,.16); color: #fff;
  font-size: 1.7rem; line-height: 1; cursor: pointer; display: grid; place-items: center; transition: background .2s, transform .2s; }
.lightbox-close:hover { background: rgba(255,255,255,.32); transform: rotate(90deg); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .dif-grid { grid-template-columns: repeat(3, 1fr); }
  .proc-grid { grid-template-columns: repeat(3, 1fr); }
  .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
}
@media (max-width: 760px) { .mbr { display: none; } }

/* Os 6 links do menu ocupam mais de 500px: entre 861 e 1080px eles não cabem
   junto da marca e do botão, e o botão acabava cortado. Nessa faixa o menu vira
   hambúrguer, mas o botão de agendar continua à vista. */
@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 860px) {
  .nav-cta .btn { display: none; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .section-head .eyebrow { justify-content: center; }
  .hero { min-height: 0; display: block; }
  .hero-glow { background: radial-gradient(64% 30% at 50% 84%, rgba(255,255,255,.5), rgba(255,255,255,0) 74%); }
  .hero-inner { grid-template-columns: 1fr; padding: 104px clamp(20px,6vw,32px) 60px; gap: 8px; }
  .hero-content { max-width: none; min-width: 0; text-align: center; }
  .hero-content .btn { max-width: 100%; white-space: normal; }
  .hero-title .t-bold, .hero-title .t-thin, .hero-sub { overflow-wrap: break-word; }
  .hero-eyebrow { justify-content: center; }
  .hero-points { max-width: 25em; margin-inline: auto; text-align: left; }
  .hero-specs { align-items: center; }
  .hero-specs .hs-chips { justify-content: center; }
  .hero-actions { justify-content: center; }
  .hero-media { order: -1; max-width: 290px; margin: 6px auto 26px; }
  .hero-content { order: 0; }
  .hero-badge { left: -6px; bottom: 6px; transform: scale(.92); transform-origin: left bottom; }
  /* O selo "5,0 Google & Booksy" some no celular: a informação já aparece
     inteira na linha de prova social abaixo dos botões, e nessa largura ele
     estourava para fora da tela. */
  .hero-badge2 { display: none; }
  .hero-wave { height: clamp(38px, 9vw, 60px); }
  .dif-grid { grid-template-columns: repeat(2, 1fr); }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .counters { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 26px 12px; }
  .trust-item:nth-child(3) { border-left: 0; }
  .gallery { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .about-cols { grid-template-columns: 1fr; }
  .about-media .crp { left: 6px; }

  .nav-panel {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px); background: var(--cream);
    transform: translateX(100%); transition: transform .4s cubic-bezier(.4,0,.2,1);
    padding: 100px 34px 40px; z-index: 105; box-shadow: -20px 0 60px -20px rgba(0,0,0,.3);
    display: flex; flex-direction: column; gap: 6px;
  }
  body.menu-open .nav-panel { transform: translateX(0); }
  .nav-panel a { font-family: var(--serif); font-size: 1.5rem; font-weight: 600; color: var(--ink); padding: 12px 0; border-bottom: 1px solid var(--line-soft); }
  .nav-panel .btn-wa { margin-top: 20px; font-family: var(--sans); font-size: 1rem; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(14,36,26,.5); opacity: 0; visibility: hidden; transition: .35s; z-index: 104; }
  body.menu-open .nav-scrim { opacity: 1; visibility: visible; }
  body.menu-open .nav-toggle span:nth-child(1){ transform: translateY(7px) rotate(45deg);}
  body.menu-open .nav-toggle span:nth-child(2){ opacity:0;}
  body.menu-open .nav-toggle span:nth-child(3){ transform: translateY(-7px) rotate(-45deg);}
}
@media (min-width: 1081px) { .nav-panel, .nav-scrim { display: none; } }

@media (max-width: 560px) {
  .section-pad { padding-block: clamp(56px, 12vw, 92px); }
  .dif-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
  .proc-grid { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .gallery { grid-auto-rows: 150px; }
  .shot { width: 260px; }
  .footer-top { flex-direction: column; }
  .footer-nav { gap: 34px; }
  .about-media .crp, .hero-badge { transform: scale(.92); transform-origin: left bottom; }
  /* long CTAs must wrap instead of forcing horizontal overflow */
  .btn { white-space: normal; line-height: 1.3; text-align: center; }
  .hero-actions .btn, .callout .btn, .offer .btn, .proc-more .btn, .faq-cta .btn { width: 100%; }
  .hero-offer { max-width: none; }
}
@media (max-width: 400px) {
  :root { --gutter: 16px; }
  .counters { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gallery .big, .gallery .tall { grid-column: auto; grid-row: auto; }
  .nav-panel .btn { width: 100%; }
  .trust-grid { grid-template-columns: 1fr; gap: 18px; }
  .trust-item { border-left: 0 !important; justify-content: flex-start; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ============================================================
   COPY REWRITE — new components
   ============================================================ */
/* hero microcopy + offer seal */
.hero-micro { margin-top: 12px; font-size: .82rem; color: var(--ink-muted); display: inline-flex; align-items: center; gap: 8px; }
.hero-micro::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--wa); box-shadow: 0 0 0 3px rgba(37,211,102,.2); }
.hero-offer { display: flex; align-items: center; gap: 13px; margin-top: 22px; padding: 14px 18px; border-radius: 14px;
  background: linear-gradient(120deg, rgba(200,168,130,.15), rgba(150,190,158,.14)); border: 1px solid rgba(200,168,130,.38);
  font-size: .88rem; color: var(--esp-700); line-height: 1.45; max-width: 470px; }
.hero-offer .gift { flex: none; width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(150deg, var(--gold), var(--gold-deep)); color: #fff; box-shadow: 0 8px 18px -8px rgba(166,128,63,.7); }
.hero-offer .gift svg { width: 22px; height: 22px; }
.hero-offer b { color: var(--esp-800); font-weight: 700; }

/* procedures groups */
.proc-group { margin-top: 44px; }
.pg-title { display: flex; align-items: center; gap: 14px; font-size: clamp(1.3rem,2.4vw,1.7rem); color: var(--esp-800);
  margin-bottom: 24px; padding-bottom: 18px; border-bottom: 1px solid var(--line-soft); }
.pg-title .pg-ico { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: #fff;
  background: linear-gradient(150deg, var(--gold), var(--gold-deep)); box-shadow: 0 10px 22px -12px rgba(166,128,63,.7); }
.pg-title .pg-ico svg { width: 24px; height: 24px; }
.pg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: start; }
.pg-item { position: relative; background: var(--paper); border: 1px solid var(--line-soft); border-radius: 14px;
  padding: 20px 22px 20px 46px; font-size: .88rem; color: var(--ink-muted); line-height: 1.5; box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease; }
.pg-item::before { content: ""; position: absolute; left: 21px; top: 24px; width: 9px; height: 9px;
  background: var(--gold); border-radius: 2px; transform: rotate(45deg); transition: transform .3s ease, box-shadow .3s ease; }
.pg-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: rgba(200,168,130,.45); }
.pg-item:hover::before { transform: rotate(45deg) scale(1.3); box-shadow: 0 0 0 4px rgba(200,168,130,.15); }
.pg-item b { display: block; color: var(--esp-800); font-family: var(--sans); font-weight: 700; font-size: 1rem; margin-bottom: 4px; letter-spacing: -.005em; }

/* intermediate callout CTA */
.callout { margin-top: 48px; text-align: center; background: var(--paper); border: 1px solid var(--line-soft);
  border-radius: var(--radius-lg); padding: clamp(30px,4vw,46px); box-shadow: var(--shadow-sm); max-width: 780px; margin-inline: auto;
  border-top: 3px solid var(--gold); }
.callout h3 { font-size: clamp(1.4rem,2.6vw,1.95rem); color: var(--esp-800); margin-bottom: 12px; }
.callout p { color: var(--ink-soft); max-width: 42em; margin: 0 auto 24px; }

/* section 4 — why cards (on espresso bg) */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 46px; }
.why-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12); border-radius: var(--radius-lg);
  padding: 30px 26px; transition: transform .35s, background .35s; }
.why-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.why-card .wico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  color: var(--gold); background: rgba(200,168,130,.15); border: 1px solid rgba(200,168,130,.32); }
.why-card .wico svg { width: 26px; height: 26px; }
.why-card h3 { color: #fff; font-size: 1.18rem; margin-bottom: 10px; line-height: 1.2; }
.why-card p { color: var(--on-esp-soft); font-size: .91rem; line-height: 1.6; }

/* results caption */
.proof-caption { text-align: center; font-size: .78rem; color: var(--ink-muted); margin: 24px auto 0; max-width: 660px; font-style: italic; }
.bg-esp .proof-caption { color: var(--on-esp-soft); }

/* novidade card (korean cleaning) */
.novidade-card { margin-top: 30px; background: var(--paper); border: 1px solid var(--line-soft); border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg); padding: 26px 30px; box-shadow: var(--shadow-sm); max-width: 900px; margin-inline: auto; }
.novidade-card .nv-tag { font-size: .7rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); }
.novidade-card h4 { font-size: 1.3rem; color: var(--esp-800); margin: 6px 0 8px; }
.novidade-card p { font-size: .92rem; color: var(--ink-soft); line-height: 1.62; }
.novidade-card b { color: var(--esp-800); }

/* counters text variant */
.counter .num.num-text { font-size: clamp(1.5rem, 2.6vw, 2.05rem); line-height: 1.1; }
.counter .num .star { color: var(--gold); font-size: .8em; }

/* ---- goals / desires (photo cards) ---- */
.goal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.goal-card { position: relative; display: flex; flex-direction: column; overflow: hidden;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm); transition: transform .35s ease, box-shadow .35s ease; }
.goal-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.g-more { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--gold-deep); }
.g-more svg { width: 15px; height: 15px; transition: transform .3s ease; }
.goal-card:hover .g-more svg { transform: translateX(4px); }

/* treatments panel — shared look */
.g-treatments { background: linear-gradient(172deg, rgba(20,52,38,.97) 0%, rgba(12,32,22,.99) 100%); color: var(--on-esp); }
.g-treatments .gt-title { display: block; font-family: var(--serif); font-weight: 700; font-size: 1.32rem; color: #fff; line-height: 1.1; }
.g-treatments .gt-label { display: block; font-size: .64rem; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); margin: 8px 0 14px; }
.g-treatments ul { display: grid; gap: 9px; }
.g-treatments li { position: relative; padding-left: 20px; font-size: .88rem; color: var(--on-esp); line-height: 1.35; }
.g-treatments li::before { content: ""; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; background: var(--gold); border-radius: 2px; transform: rotate(45deg); }
.g-treatments .gt-cta { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; font-size: .84rem; font-weight: 700; color: var(--gold); transition: gap .3s ease; }
.g-treatments .gt-cta svg { width: 16px; height: 16px; }
.g-treatments .gt-cta:hover { gap: 13px; }

/* DESKTOP: painel desliza de baixo sobre o card no hover */
@media (min-width: 861px) {
  .g-treatments { position: absolute; inset: 0; z-index: 4; display: flex; flex-direction: column; justify-content: center;
    padding: 24px 30px; transform: translateY(101%); transition: transform .5s cubic-bezier(.4,0,.2,1); overflow-y: auto; }
  .goal-card:hover .g-treatments { transform: translateY(0); }
}

/* MOBILE: painel em fluxo, abre ao rolar até o card */
@media (max-width: 860px) {
  .g-treatments { max-height: 0; opacity: 0; overflow: hidden; padding: 0 26px;
    transition: max-height .55s ease, opacity .45s ease, padding .55s ease; }
  .g-treatments .gt-title { display: none; }
  .goal-card.gt-open .g-treatments { max-height: 640px; opacity: 1; padding: 24px 26px 26px; }
  .g-more { display: none; }
}
.g-photo { position: relative; aspect-ratio: 3/2; overflow: hidden; background: var(--cream-2); }
.g-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1); cursor: zoom-in; }
.goal-card:hover .g-photo img { transform: scale(1.05); }
.g-photo .g-tag { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: .64rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: #fff; background: rgba(16,40,30,.62);
  padding: 5px 11px; border-radius: 50px; backdrop-filter: blur(3px); -webkit-backdrop-filter: blur(3px); }
/* placeholder for items still without a photo */
.g-photo--empty { display: grid; place-items: center;
  background: linear-gradient(150deg, var(--rose-soft), var(--champ)); color: var(--esp-700);
  box-shadow: inset 0 0 0 1px rgba(200,168,130,.18); }
.g-photo--empty svg { width: 48px; height: 48px; stroke-width: 1.4; opacity: .8; }
.g-photo--empty .soon { position: absolute; bottom: 14px; left: 0; right: 0; text-align: center;
  font-size: .66rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-deep); opacity: .85; }
.g-body { padding: 22px 26px 26px; }
.g-body h3 { font-size: clamp(1.34rem, 1.8vw, 1.58rem); font-weight: 700; color: var(--esp-800); line-height: 1.16; }
.g-body h3::after { content: ""; display: block; width: 32px; height: 2px; border-radius: 2px; background: var(--gold); margin: 11px 0 13px; transition: width .35s ease; }
.goal-card:hover .g-body h3::after { width: 52px; }
.g-body p { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; }

/* ---- reassurance panel (projeto sob medida) — destaque ---- */
.reassure { margin-top: 52px; display: grid; grid-template-columns: auto 1fr auto; gap: 34px; align-items: center;
  background: linear-gradient(135deg, var(--esp-700) 0%, var(--esp-900) 100%);
  border-radius: 22px; padding: 44px 48px; position: relative; overflow: hidden;
  box-shadow: 0 34px 64px -26px rgba(16,40,30,.65); outline: 1.5px solid rgba(200,168,130,.3); outline-offset: -1.5px; }
.reassure::before { content: ""; position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(52% 130% at 8% 12%, rgba(200,168,130,.22), transparent 60%); }
.reassure > * { position: relative; z-index: 1; }
.reassure .r-ico { flex: none; width: 76px; height: 76px; border-radius: 50%; display: grid; place-items: center;
  color: var(--esp-900); background: linear-gradient(150deg, #E0C79E, var(--gold-deep));
  box-shadow: 0 14px 28px -10px rgba(200,168,130,.75), inset 0 0 0 1px rgba(255,255,255,.3); }
.reassure .r-ico svg { width: 36px; height: 36px; }
.reassure .r-label { display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.reassure .r-text h3 { font-family: var(--serif); font-weight: 700; font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  color: #fff; line-height: 1.18; margin-bottom: 12px; }
.reassure .r-text h3 em { font-style: normal; font-family: var(--serif); font-weight: 700; color: var(--gold); }
.reassure .r-text p { font-size: 1.02rem; color: var(--on-esp); line-height: 1.62; max-width: 46em; }
.reassure .r-text b { color: var(--gold); font-weight: 700; }
.reassure .btn { flex: none; }
@media (max-width: 900px) {
  .goal-grid { grid-template-columns: repeat(2, 1fr); }
  .reassure { grid-template-columns: 1fr; text-align: center; gap: 18px; padding: 34px 28px; }
  .reassure .r-ico { margin: 0 auto; }
  .reassure .r-text p { margin-inline: auto; }
}
@media (max-width: 560px) {
  .goal-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
}


@media (max-width: 1024px) {
  .pg-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero-offer { margin-inline: auto; text-align: left; }
  .hero-micro { justify-content: center; }
}
@media (max-width: 560px) {
  .pg-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; max-width: 360px; margin-inline: auto; }
}

/* ============================================================
   SAÚDE CAPILAR — intradermoterapia + laser capilar
   ============================================================ */
.cap-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 46px; }
.cap-card { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg); padding: 34px 32px; transition: transform .35s ease, background .35s ease; }
.cap-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.09); }
.cap-ico { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 18px;
  color: var(--esp-900); background: linear-gradient(150deg, #E0C79E, var(--gold-deep));
  box-shadow: 0 12px 24px -12px rgba(200,168,130,.7); }
.cap-ico svg { width: 26px; height: 26px; }
.cap-kicker { display: block; font-size: .66rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.cap-card h3 { color: #fff; font-size: 1.26rem; line-height: 1.2; margin-bottom: 10px; }
.cap-card p { color: var(--on-esp-soft); font-size: .93rem; line-height: 1.62; }
.cap-list { margin-top: 18px; display: grid; gap: 9px; }
.cap-list li { position: relative; padding-left: 20px; font-size: .88rem; color: var(--on-esp); line-height: 1.4; }
.cap-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 7px; height: 7px;
  background: var(--gold); border-radius: 2px; transform: rotate(45deg); }
.cap-tech { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 18px; }
.cap-tech > div { border: 1px dashed rgba(200,168,130,.38); border-radius: var(--radius-lg); padding: 26px 28px; }
.cap-tech h4 { color: var(--gold); font-size: 1.08rem; margin-bottom: 8px; }
.cap-tech p { color: var(--on-esp-soft); font-size: .9rem; line-height: 1.6; }
.cap-cta { text-align: center; margin-top: 40px; }
.cap-note { margin-top: 16px; font-size: .82rem; color: var(--on-esp-soft); opacity: .85; }
@media (max-width: 760px) {
  .cap-grid, .cap-tech { grid-template-columns: 1fr; }
}

/* ============================================================
   NOVIDADES DA CLÍNICA — carrossel
   ============================================================ */
.nov-slider { position: relative; max-width: 960px; margin: 46px auto 0; }
.nov-viewport { overflow: hidden; border-radius: var(--radius-lg); box-shadow: var(--shadow); border: 1px solid var(--line-soft); background: var(--paper); }
.nov-track { display: flex; transition: transform .55s cubic-bezier(.4,0,.2,1); }
.nov-slide { min-width: 100%; display: grid; grid-template-columns: 1fr 1fr; }
.nov-media { position: relative; aspect-ratio: 1/1; background: linear-gradient(150deg, var(--cream-2), var(--cream-3)); display: grid; place-items: center; overflow: hidden; }
.nov-media img { width: 100%; height: 100%; object-fit: contain; }
/* slide de tratamento que ainda não tem foto */
.nov-media--empty { background: linear-gradient(150deg, var(--rose-soft), var(--champ)); color: var(--esp-700);
  box-shadow: inset 0 0 0 1px rgba(200,168,130,.18); }
.nov-media--empty svg { width: clamp(72px, 12vw, 104px); height: clamp(72px, 12vw, 104px); stroke-width: 1.2; opacity: .82; }
.nov-info { display: flex; flex-direction: column; justify-content: center; padding: clamp(28px, 4vw, 52px); }
.nov-tag { display: inline-block; align-self: flex-start; font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); background: rgba(200,168,130,.12); border: 1px solid rgba(200,168,130,.32); padding: 5px 13px; border-radius: 50px; margin-bottom: 18px; }
.nov-info h3 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); color: var(--esp-800); line-height: 1.14; margin-bottom: 12px; }
.nov-info p { font-size: 1rem; color: var(--ink-soft); line-height: 1.62; margin-bottom: 28px; }
.nov-info .btn { align-self: flex-start; }
.nov-controls { display: flex; align-items: center; justify-content: center; gap: 18px; margin-top: 26px; }
.nov-arrow { flex: none; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--line); background: var(--paper); color: var(--esp-700); display: grid; place-items: center; cursor: pointer; box-shadow: var(--shadow-sm); transition: background .25s, color .25s, transform .25s, border-color .25s; }
.nov-arrow:hover { background: var(--esp-700); color: #fff; border-color: var(--esp-700); transform: translateY(-2px); }
.nov-arrow svg { width: 22px; height: 22px; }
.nov-dots { display: flex; align-items: center; gap: 8px; }
.nov-dots button { width: 9px; height: 9px; border-radius: 50%; border: none; background: var(--line); cursor: pointer; padding: 0; transition: width .3s ease, background .3s ease; }
.nov-dots button.active { width: 26px; border-radius: 50px; background: var(--gold); }
@media (max-width: 760px) {
  .nov-slide { grid-template-columns: 1fr; }
  .nov-info { padding: 26px 26px 32px; text-align: center; }
  .nov-tag, .nov-info .btn { align-self: center; }
  .nov-dots button.active { width: 22px; }
}

/* ============================================================
   PROMO no header — troca com o menu ao rolar
   ============================================================ */
.nav-promo { display: none; align-items: center; justify-content: center; gap: 11px; flex: 1;
  margin: 0 clamp(10px, 3vw, 30px); position: relative; overflow: hidden; text-decoration: none;
  background: linear-gradient(100deg, rgba(200,168,130,.18), rgba(200,168,130,.09));
  border: 1px solid rgba(200,168,130,.42); border-radius: 50px; padding: 9px 22px;
  transition: background .25s ease, transform .25s ease; }
.nav-promo:hover { background: linear-gradient(100deg, rgba(200,168,130,.28), rgba(200,168,130,.15)); transform: translateY(-1px); }
.np-gift { flex: none; width: 32px; height: 32px; border-radius: 50%; display: grid; place-items: center; color: #fff;
  background: linear-gradient(150deg, var(--gold), var(--gold-deep)); box-shadow: 0 6px 14px -6px rgba(166,128,63,.7);
  animation: npWiggle 3s ease-in-out infinite; }
.np-gift svg { width: 18px; height: 18px; }
.np-text { font-size: .9rem; font-weight: 600; color: var(--esp-800); line-height: 1.2; letter-spacing: .005em; }
.np-text b { color: var(--gold-deep); font-weight: 700; }
.np-short { display: none; }
.nav-promo::after { content: ""; position: absolute; top: 0; left: -60%; width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.55), transparent);
  transform: skewX(-18deg); animation: promoShine 4.5s ease-in-out infinite; }
@keyframes promoShine { 0%, 58% { left: -60%; } 100% { left: 130%; } }
@keyframes npWiggle { 0%, 86%, 100% { transform: rotate(0); } 90% { transform: rotate(-11deg); } 94% { transform: rotate(11deg); } }

/* estado: menu recolhe, promo aparece — com destaque bem chamativo */
.site-header.promo-mode .nav-links { display: none; }
.site-header.promo-mode { animation: headerFlash .8s ease-out; }
.site-header.promo-mode .nav-promo {
  display: inline-flex;
  animation: promoPop .6s cubic-bezier(.34,1.56,.64,1) both,
             promoBurst .9s ease-out both,
             promoPulse 2.3s ease-in-out 1s infinite;
}
.site-header.promo-mode .np-gift {
  animation: giftPop .7s cubic-bezier(.34,1.56,.64,1) both,
             npWiggle 3s ease-in-out 1s infinite;
}
@keyframes promoPop {
  0%   { opacity: 0; transform: scale(.5); }
  55%  { opacity: 1; transform: scale(1.1); }
  78%  { transform: scale(.97); }
  100% { transform: scale(1); }
}
@keyframes promoBurst {
  0%   { box-shadow: 0 0 0 0 rgba(200,168,130,.75), 0 0 26px 6px rgba(200,168,130,.55); }
  100% { box-shadow: 0 0 0 26px rgba(200,168,130,0), 0 0 0 0 rgba(200,168,130,0); }
}
@keyframes promoPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,168,130,0); }
  50%      { box-shadow: 0 0 22px 3px rgba(200,168,130,.5); }
}
@keyframes giftPop {
  0%   { transform: scale(0) rotate(-50deg); }
  60%  { transform: scale(1.3) rotate(12deg); }
  100% { transform: scale(1) rotate(0); }
}
@keyframes headerFlash {
  0%   { background: #EFE3CD; box-shadow: 0 6px 26px -6px rgba(200,168,130,.7); }
  100% { background: var(--cream); }
}

@media (max-width: 860px) {
  .site-header.promo-mode .brand .wm { display: none; }
  .site-header.promo-mode .nav-promo { display: inline-flex; margin: 0 12px; padding: 8px 16px; }
}
@media (max-width: 640px) {
  .np-full { display: none; }
  .np-short { display: inline; }
  .np-text { font-size: .74rem; line-height: 1.18; }
  .np-gift { width: 28px; height: 28px; }
  .np-gift svg { width: 15px; height: 15px; }
  .nav-promo { gap: 9px; padding: 7px 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .np-gift, .nav-promo::after { animation: none !important; }
}

/* ============================================================
   POPUP de promoção (mobile) — aparece e depois "voa" p/ o topo
   ============================================================ */
.promo-popup { display: none; }
@media (max-width: 860px) {
  .promo-popup { display: block; position: fixed; z-index: 108; left: 14px; right: 14px; top: 86px;
    background: linear-gradient(160deg, var(--esp-700) 0%, var(--esp-900) 100%); color: var(--on-esp);
    border-radius: 20px; padding: 22px 22px 24px; box-shadow: 0 30px 64px -18px rgba(10,26,18,.75);
    outline: 1.5px solid rgba(200,168,130,.42);
    opacity: 0; visibility: hidden; transform: translateY(-150%) scale(.94);
    transition: opacity .4s ease, transform .55s cubic-bezier(.34,1.45,.6,1), visibility .4s; }
  .promo-popup.show { opacity: 1; visibility: visible; transform: none; }
  .promo-popup.docking { animation: ppDock .6s cubic-bezier(.6,0,.35,1) forwards; }
  .pp-close { position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; border-radius: 50%; border: none;
    background: rgba(255,255,255,.14); color: #fff; font-size: 1.5rem; line-height: 1; cursor: pointer;
    display: grid; place-items: center; transition: background .2s, transform .2s; }
  .pp-close:hover { background: rgba(255,255,255,.26); transform: rotate(90deg); }
  .pp-gift { display: grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; color: #fff;
    background: linear-gradient(150deg, var(--gold), var(--gold-deep)); box-shadow: 0 12px 24px -8px rgba(138,106,62,.75);
    margin-bottom: 14px; animation: ppGiftPulse 1.7s ease-in-out infinite; }
  .pp-gift svg { width: 28px; height: 28px; }
  .pp-eyebrow { font-size: .7rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); }
  .pp-text { font-size: 1rem; line-height: 1.5; color: var(--on-esp); margin: 6px 0 18px; }
  .pp-text b { color: #fff; }
  .pp-cta { display: flex; align-items: center; justify-content: center; width: 100%;
    background: linear-gradient(135deg, #34e07a 0%, #16a34a 100%); color: #fff; font-weight: 700; font-size: .96rem;
    padding: 14px; border-radius: 50px; box-shadow: 0 12px 28px -10px rgba(22,163,74,.7); text-decoration: none; }
}
@keyframes ppDock {
  0%   { opacity: 1; transform: translateY(0) scale(1); }
  70%  { opacity: .5; }
  100% { opacity: 0; transform: translateY(-48vh) scale(.35); }
}
@keyframes ppGiftPulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.13); } }
@media (prefers-reduced-motion: reduce) {
  .pp-gift { animation: none !important; }
  .promo-popup.docking { animation: none !important; opacity: 0; visibility: hidden; }
}

/* ============================================================
   PÁGINAS DE TRATAMENTO (interiores)
   ============================================================ */
.page-hero { position: relative; overflow: hidden; isolation: isolate; color: var(--ink);
  background: linear-gradient(118deg, #DDE8DF 0%, #E9EFE6 40%, #F3F1E9 68%, var(--cream) 100%); }
.page-hero .hero-glow { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(44% 46% at 74% 32%, rgba(255,255,255,.7), rgba(255,255,255,0) 60%),
    radial-gradient(64% 60% at 82% 64%, rgba(143,169,152,.34), rgba(143,169,152,0) 60%); }
.page-hero-inner { position: relative; z-index: 3; width: 100%; max-width: 1180px; margin: 0 auto;
  padding: 132px clamp(22px, 5vw, 52px) 84px;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.page-hero-content { max-width: 560px; animation: hero-up .9s cubic-bezier(.2,.7,.2,1) both; }
.page-hero h1 { font-family: var(--serif); font-weight: 700; color: var(--esp-800);
  font-size: clamp(2.1rem, 4.5vw, 3.35rem); line-height: 1.05; margin: 0 0 16px; }
.page-hero h1 em { font-style: normal; color: var(--gold-deep); font-family: var(--serif); font-weight: 700; }
.page-hero .hero-sub { margin-bottom: 24px; }
.page-hero-media { position: relative; max-width: 430px; width: 100%; margin-inline: auto; }
.page-hero-media .ph-card { aspect-ratio: 4/4.6; border-radius: 20px 20px 130px 20px; }
/* artes quadradas (com texto): mostram a imagem inteira, sem corte */
.ph-card.ph-art { aspect-ratio: 1/1; border-radius: 24px;
  background: linear-gradient(150deg, var(--cream-2), var(--cream-3)); }
.ph-card.ph-art img { object-fit: contain; }
.page-hero-media .ph-card.ph-art { aspect-ratio: 1/1; border-radius: 24px; }

/* migalhas de pão */
.crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  font-size: .78rem; color: var(--ink-muted); margin-bottom: 18px; }
.crumbs a { color: var(--gold-deep); font-weight: 600; }
.crumbs a:hover { text-decoration: underline; }
.crumbs .sep { opacity: .5; }
.crumbs [aria-current] { color: var(--ink-soft); font-weight: 600; }

/* selos rápidos (duração, resultado, retorno) */
.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 46px; }
.fact { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 22px 24px; box-shadow: var(--shadow-sm); }
.fact .fico { width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 13px;
  color: var(--esp-700); background: linear-gradient(150deg, var(--rose-soft), var(--champ));
  box-shadow: inset 0 0 0 1px rgba(200,168,130,.2); }
.fact .fico svg { width: 21px; height: 21px; stroke-width: 1.7; }
.fact .fk { display: block; font-size: .66rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 5px; }
.fact .fv { display: block; font-size: .96rem; font-weight: 600; color: var(--esp-800); line-height: 1.4; }

/* passo a passo da sessão */
.steps { display: grid; gap: 16px; margin-top: 46px; max-width: 820px; margin-inline: auto; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 20px; align-items: start;
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 24px 26px; box-shadow: var(--shadow-sm); transition: transform .35s ease, box-shadow .35s ease; }
.step:hover { transform: translateX(4px); box-shadow: var(--shadow); }
.step .sn { flex: none; width: 40px; height: 40px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.15rem; color: var(--esp-900);
  background: linear-gradient(150deg, #E0C79E, var(--gold-deep));
  box-shadow: 0 10px 20px -10px rgba(200,168,130,.7); }
.step h3 { font-size: 1.08rem; color: var(--esp-800); margin-bottom: 6px; line-height: 1.25; }
.step p { font-size: .92rem; color: var(--ink-soft); line-height: 1.6; }

/* aviso honesto (contraindicações / expectativa) */
.honest { margin-top: 46px; display: grid; grid-template-columns: auto 1fr; gap: 22px; align-items: start;
  background: var(--paper); border: 1px solid var(--line-soft); border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg); padding: 28px 32px; box-shadow: var(--shadow-sm); }
.honest .hico { flex: none; width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center;
  color: var(--esp-700); background: linear-gradient(150deg, var(--rose-soft), var(--champ)); }
.honest .hico svg { width: 22px; height: 22px; stroke-width: 1.7; }
.honest h3 { font-size: 1.12rem; color: var(--esp-800); margin-bottom: 8px; }
.honest p { font-size: .93rem; color: var(--ink-soft); line-height: 1.62; }
.honest p + p { margin-top: 9px; }
.honest b { color: var(--esp-800); }

/* navegação entre tratamentos (links internos p/ SEO) */
.xlinks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; }
.xlink { display: block; background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 24px 26px; box-shadow: var(--shadow-sm); transition: transform .35s ease, box-shadow .35s ease; }
.xlink:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.xlink .xk { display: block; font-size: .66rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var(--gold-deep); margin-bottom: 8px; }
.xlink h3 { font-size: 1.12rem; color: var(--esp-800); margin-bottom: 7px; line-height: 1.25; }
.xlink p { font-size: .88rem; color: var(--ink-soft); line-height: 1.55; }
.xlink .xgo { display: inline-flex; align-items: center; gap: 7px; margin-top: 13px;
  font-size: .78rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--gold-deep); }
.xlink .xgo svg { width: 15px; height: 15px; transition: transform .3s ease; }
.xlink:hover .xgo svg { transform: translateX(4px); }

@media (max-width: 900px) {
  .page-hero-inner { grid-template-columns: 1fr; padding-top: 118px; padding-bottom: 62px; }
  .page-hero-media { order: -1; max-width: 290px; margin-bottom: 22px; }
  .page-hero-content { max-width: none; }
  .facts, .xlinks { grid-template-columns: 1fr; max-width: 480px; margin-inline: auto; }
  .honest { grid-template-columns: 1fr; text-align: center; }
  .honest .hico { margin-inline: auto; }
}
@media (max-width: 560px) {
  .step { grid-template-columns: 1fr; gap: 14px; }
}

/* ---- balão de convite do WhatsApp (aparece após 5s + scroll) ---- */
.wa-bubble { position: fixed; right: 22px; bottom: 88px; z-index: 89; width: min(272px, calc(100vw - 44px));
  background: var(--paper); border: 1px solid var(--line-soft); border-radius: 18px 18px 5px 18px;
  padding: 14px 16px; box-shadow: 0 20px 44px -18px rgba(16,40,30,.5);
  opacity: 0; visibility: hidden; transform: translateY(12px) scale(.94); transform-origin: 100% 100%;
  transition: opacity .38s ease, transform .38s cubic-bezier(.2,.8,.2,1), visibility .38s; }
.wa-bubble.show { opacity: 1; visibility: visible; transform: none; }
.wa-bubble > a { display: flex; gap: 11px; align-items: flex-start; }
.wa-bubble .wb-ava { flex: none; width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
  border: 2px solid var(--gold); background: var(--cream-2); }
.wa-bubble .wb-ava img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }
.wa-bubble .wb-txt { display: block; }
.wa-bubble .wb-msg { display: block; font-size: .84rem; line-height: 1.45; color: var(--ink-soft); }
.wa-bubble b { color: var(--esp-800); font-weight: 700; }
.wa-bubble .wb-go { display: block; margin-top: 7px; font-size: .74rem; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase; color: var(--wa-dark); }
.wa-bubble .wb-close { position: absolute; top: -9px; right: -9px; width: 26px; height: 26px; padding: 0;
  border-radius: 50%; border: 1px solid var(--line-soft); background: var(--paper); color: var(--ink-muted);
  font-size: 16px; line-height: 1; cursor: pointer; box-shadow: var(--shadow-sm); }
.wa-bubble .wb-close:hover { color: var(--ink); }
@media (max-width: 420px) {
  .wa-bubble { right: 14px; bottom: 76px; width: min(248px, calc(100vw - 28px)); }
}
@media (prefers-reduced-motion: reduce) { .wa-bubble { transition: opacity .2s ease, visibility .2s; } }

/* ---- páginas legais (política de privacidade etc.) ---- */
.legal { max-width: 780px; margin-inline: auto; }
.legal .updated { font-size: .84rem; color: var(--ink-muted); font-style: italic; margin-bottom: 34px;
  padding-bottom: 20px; border-bottom: 1px solid var(--line-soft); }
.legal h2 { font-size: clamp(1.24rem, 2.3vw, 1.6rem); color: var(--esp-800); margin: 40px 0 12px; line-height: 1.25; }
.legal h2:first-of-type { margin-top: 0; }
.legal p { font-size: .97rem; color: var(--ink-soft); line-height: 1.72; }
.legal p + p { margin-top: 12px; }
.legal ul { margin-top: 12px; display: grid; gap: 9px; }
.legal li { position: relative; padding-left: 20px; font-size: .97rem; color: var(--ink-soft); line-height: 1.6; }
.legal li::before { content: ""; position: absolute; left: 0; top: 9px; width: 7px; height: 7px;
  background: var(--gold); border-radius: 2px; transform: rotate(45deg); }
.legal b { color: var(--esp-800); font-weight: 600; }
.legal a { color: var(--gold-deep); font-weight: 600; text-decoration: underline; }
.legal a:hover { color: var(--esp-700); }
.footer-bottom .legal-link { color: var(--rose-soft); }
.footer-bottom .legal-link:hover { color: #fff; }

/* ---- prova social abaixo dos botões do hero ---- */
.hero-proof { display: inline-flex; align-items: center; gap: 11px; margin-top: 22px; flex-wrap: wrap;
  background: rgba(255,255,255,.7); border: 1px solid rgba(200,168,130,.3); border-radius: 50px;
  padding: 9px 18px; box-shadow: var(--shadow-sm); backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.hero-proof .hp-stars { color: var(--gold); font-size: .95rem; letter-spacing: .08em; line-height: 1; }
.hero-proof .hp-txt { font-size: .84rem; color: var(--ink-soft); line-height: 1.4; }
.hero-proof .hp-txt b { color: var(--esp-800); font-weight: 700; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
@media (max-width: 620px) {
  .hero-proof { width: 100%; justify-content: center; text-align: center; }
}

/* ---- lista "a sua avaliação inclui" (seção final) ---- */
.offer-includes { margin: 30px auto 0; max-width: 560px; text-align: left;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg); padding: 26px 30px; }
.offer-includes .oi-title { display: block; font-size: .68rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.offer-includes ul { display: grid; gap: 12px; }
.offer-includes li { display: flex; gap: 12px; align-items: flex-start;
  font-size: .95rem; color: var(--on-esp); line-height: 1.45; }
.offer-includes li svg { flex: none; width: 18px; height: 18px; color: var(--gold); margin-top: 2px; }
@media (max-width: 560px) { .offer-includes { padding: 22px 22px; } }

/* ---- bloco de contato do rodapé ---- */
.footer-brand .fb-line { margin-top: 14px; font-size: .88rem; line-height: 1.6; color: var(--on-esp-soft); }
.footer-brand .fb-line a { color: var(--rose-soft); }
.footer-brand .fb-line a:hover { color: #fff; }

/* ---- listas em duas colunas (páginas de tratamento) ---- */
.feat-list--2col, .cap-list--2col { grid-template-columns: repeat(2, 1fr); gap: 16px 36px; }
@media (max-width: 760px) {
  .feat-list--2col, .cap-list--2col { grid-template-columns: 1fr; }
}

/* ---- botões da capa lado a lado ---- */
/* Os dois rótulos são longos. Para caberem lado a lado, a coluna de texto do
   hero ganha mais espaço (a foto tem max-width própria, então não estica) e os
   botões ficam menores. O texto do principal pode quebrar em duas linhas — sem
   isso, `white-space: nowrap` do .btn cortaria o rótulo. */
@media (min-width: 861px) {
  .hero-inner { grid-template-columns: 1.15fr .85fr; }
  .hero .hero-content { max-width: 600px; }
  .hero .hero-actions { flex-wrap: nowrap; align-items: stretch; }
  .hero .hero-actions .btn-lg { padding: 14px 22px; font-size: .9rem; line-height: 1.3; }
  .hero .hero-actions .btn { white-space: normal; text-align: center; }
  .hero .hero-actions .btn-cta { flex: 1 1 auto; min-width: 0; }
  .hero .hero-actions .btn-cta .cta-ico { flex: none; }
  .hero .hero-actions .btn-outline { flex: 0 0 auto; white-space: nowrap; }
}


/* ============================================================
   CAMPANHA PEELING ATA 40+ (/peeling-ata-floripa)
   ============================================================ */
.ata-hero .page-hero-inner { padding-top: 128px; }
.ata-credenciais { font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-deep); background: rgba(200,168,130,.14); border: 1px solid rgba(200,168,130,.34);
  border-radius: 50px; padding: 9px 20px; display: inline-block; margin-bottom: 26px; line-height: 1.5; }
.ata-hero h1 em { display: block; font-style: italic; color: var(--sage-deep); font-weight: 500; }
.ata-h1-fim { display: block; }
.ata-local { margin-top: 18px; font-size: .7rem; font-weight: 700; letter-spacing: .22em;
  text-transform: uppercase; color: var(--ink-muted); }
.ata-vagas { margin-top: 16px; font-size: .84rem; font-weight: 600; color: var(--gold-deep); }

.ata-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 30px; }
.ata-stats div { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 20px 18px; box-shadow: var(--shadow-sm); }
.ata-stats b { display: block; font-family: var(--serif); font-size: 1.9rem; font-weight: 700; color: var(--gold-deep); line-height: 1; }
.ata-stats span { display: block; margin-top: 7px; font-size: .78rem; color: var(--ink-soft); line-height: 1.4; }

.ata-filosofia { background: linear-gradient(150deg, var(--rose-soft), var(--champ));
  border-radius: var(--radius-lg); padding: 38px 36px; box-shadow: var(--shadow-sm); }
.af-label { font-size: .66rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-deep); }
.af-frase { font-family: var(--serif); font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-style: italic;
  color: var(--esp-800); line-height: 1.35; margin: 14px 0 16px; }
.af-nota { font-size: .9rem; color: var(--ink-soft); line-height: 1.6; }

.ata-diferencial { max-width: 840px; margin: 44px auto 0; }
.ata-diferencial p { color: var(--on-esp-soft); font-size: 1rem; line-height: 1.7; }
.ata-diferencial p + p { margin-top: 14px; }
.ata-diferencial b { color: #fff; }

.sn.sn-dia { width: auto; min-width: 54px; padding: 0 12px; border-radius: 50px; font-family: var(--sans);
  font-size: .72rem; font-weight: 700; letter-spacing: .04em; }

.ata-mitos { max-width: 820px; margin: 44px auto 0; display: grid; gap: 14px; }
.am-item { background: var(--paper); border: 1px solid var(--line-soft); border-left: 3px solid var(--gold);
  border-radius: var(--radius-lg); padding: 22px 26px; box-shadow: var(--shadow-sm); }
.am-mito { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; font-weight: 600;
  color: var(--ink-muted); font-style: italic; }
.am-mito svg { flex: none; width: 17px; height: 17px; margin-top: 2px; color: var(--ink-muted); }
.am-verdade { margin-top: 10px; font-size: .95rem; color: var(--ink-soft); line-height: 1.62; }
.am-verdade b { color: var(--esp-800); }

.ata-quem { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 46px; }
.aq-card { border-radius: var(--radius-lg); padding: 30px 32px; box-shadow: var(--shadow-sm); }
.aq-sim { background: var(--paper); border: 1px solid rgba(143,169,152,.4); }
.aq-nao { background: var(--paper); border: 1px solid rgba(200,168,130,.4); }
.aq-titulo { display: flex; gap: 10px; align-items: center; font-size: .72rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase; margin-bottom: 18px; }
.aq-sim .aq-titulo { color: var(--sage-deep); }
.aq-nao .aq-titulo { color: var(--gold-deep); }
.aq-titulo svg { width: 17px; height: 17px; }
.aq-card ul { display: grid; gap: 11px; }
.aq-card li { display: flex; gap: 11px; align-items: flex-start; font-size: .93rem; color: var(--ink-soft); line-height: 1.5; }
.aq-card li svg { flex: none; width: 16px; height: 16px; margin-top: 3px; }
.aq-card li.ok svg { color: var(--sage-deep); }
.aq-card li.nao svg { color: var(--gold-deep); }

.ata-oferta { display: grid; grid-template-columns: 1.05fr .95fr; gap: 20px; margin-top: 46px; align-items: stretch; }
.ao-esq { background: var(--paper); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 34px 34px; box-shadow: var(--shadow-sm); }
.ao-presente { display: grid; grid-template-columns: auto 1fr; gap: 18px; align-items: start; }
.ap-ico { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; color: var(--esp-900);
  background: linear-gradient(150deg, #E0C79E, var(--gold-deep)); box-shadow: 0 12px 24px -12px rgba(138,106,62,.7); }
.ap-ico svg { width: 24px; height: 24px; }
.ao-presente h3 { font-size: 1.16rem; color: var(--esp-800); margin-bottom: 8px; line-height: 1.25; }
.ao-presente p { font-size: .93rem; color: var(--ink-soft); line-height: 1.6; }
.ao-notas { display: grid; gap: 16px; margin-top: 26px; padding-top: 24px; border-top: 1px solid var(--line-soft); }
.an-k { display: block; font-size: .66rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-deep); }
.an-v { display: block; margin-top: 5px; font-family: var(--serif); font-size: 1.24rem; font-weight: 700; color: var(--esp-800); }
.ao-notas p { margin-top: 5px; font-size: .87rem; color: var(--ink-soft); line-height: 1.55; }

.ao-dir { background: var(--esp-800); color: var(--on-esp); border-radius: var(--radius-lg);
  padding: 34px 34px; box-shadow: var(--shadow); }
.ad-label { font-size: .66rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.ad-valor { font-family: var(--serif); font-size: 3.2rem; font-weight: 700; color: #fff; line-height: 1; margin: 12px 0 24px; }
.ad-valor span { display: block; font-family: var(--sans); font-size: .8rem; font-weight: 500; color: var(--on-esp-soft); margin-top: 8px; letter-spacing: 0; }
.ao-dir ul { display: grid; gap: 11px; margin-bottom: 26px; }
.ao-dir li { display: flex; gap: 11px; align-items: flex-start; font-size: .93rem; color: var(--on-esp); line-height: 1.45; }
.ao-dir li svg { flex: none; width: 16px; height: 16px; color: var(--gold); margin-top: 3px; }
.ad-nota { margin-top: 14px; font-size: .8rem; color: var(--on-esp-soft); text-align: center; }

.ata-frase { background: var(--esp-800); border-radius: var(--radius-lg); padding: 38px 36px; box-shadow: var(--shadow); }
.ata-frase p { font-family: var(--serif); font-size: clamp(1.24rem, 2.3vw, 1.6rem); font-style: italic;
  color: #fff; line-height: 1.4; }
.ata-frase span { display: block; margin-top: 18px; font-size: .72rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); }

@media (max-width: 860px) {
  .ata-oferta, .ata-quem { grid-template-columns: 1fr; }
  .ata-stats { grid-template-columns: 1fr; max-width: 340px; }
}

/* ---- banner da campanha Peeling ATA na home ---- */
.ata-banner { display: inline-flex; align-items: center; gap: 11px; margin-bottom: 22px;
  background: linear-gradient(100deg, rgba(200,168,130,.22), rgba(200,168,130,.1));
  border: 1px solid rgba(200,168,130,.45); border-radius: 50px; padding: 8px 18px 8px 8px;
  transition: transform .25s ease, background .25s ease; }
.ata-banner:hover { transform: translateY(-2px); background: linear-gradient(100deg, rgba(200,168,130,.32), rgba(200,168,130,.16)); }
.ata-banner .ab-tag { font-size: .62rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--esp-900); background: var(--gold); border-radius: 50px; padding: 5px 11px; }
.ata-banner .ab-txt { font-size: .84rem; color: var(--ink-soft); line-height: 1.35; }
.ata-banner .ab-txt b { color: var(--esp-800); font-weight: 700; }
.ata-banner svg { flex: none; width: 15px; height: 15px; color: var(--gold-deep); transition: transform .3s ease; }
.ata-banner:hover svg { transform: translateX(3px); }
.xlink-destaque { border-color: rgba(200,168,130,.5); background: linear-gradient(170deg, #FFFDF8, var(--champ)); }
@media (max-width: 860px) {
  .ata-banner { margin-inline: auto; }
  .ata-banner .ab-txt { font-size: .78rem; }
}
