/* =========================================================
   Dra. Marina Barreto · Odontologia e Harmonização Facial
   Design tokens: ver seção :root abaixo. Alterar cores/fontes
   só aqui reflete no site inteiro.
   ========================================================= */

:root {
  --bg:          #E9D7CC;
  --bg-soft:     #F5ECE6;
  --card:        #D5BFB3;
  --rose:        #C4A292;
  --btn:         #A58172;
  --btn-hover:   #7E6357;
  --title:       #64453D;
  --text:        #53352D;
  --dark:        #311D12;
  --divider:     rgba(100, 69, 61, 0.12);
  --shadow-soft: rgba(83, 53, 45, 0.14);
  --shadow-mid:  rgba(83, 53, 45, 0.22);

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, -apple-system, sans-serif;

  --header-h: 76px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body {
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: none; background: none; cursor: pointer; }
ul { list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-serif); color: var(--title); font-weight: 600; line-height: 1.15; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 300;
  background: var(--title); color: var(--bg-soft);
  padding: 12px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--title); outline-offset: 3px; }

/* ===== REVEAL =====
   O conteúdo só é escondido quando o script.js confirma que assumiu o controle
   (classe js-anim no <html>). Se o JS não carregar, nada fica invisível. */
html.js-anim .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.8s cubic-bezier(0.22,1,0.36,1), transform 0.8s cubic-bezier(0.22,1,0.36,1);
}
html.js-anim .reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ===== EYEBROW ===== */
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--btn);
  margin-bottom: 14px;
}
.eyebrow::before, .eyebrow::after {
  content: ''; width: 22px; height: 1px; background: var(--rose);
}
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { margin-top: 14px; font-size: 16px; color: var(--text); opacity: 0.85; }

.section { padding: 88px 0; }
.section-soft { background: var(--bg-soft); }
@media (max-width: 640px) { .section { padding: 64px 0; } }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 30px;
  border-radius: 100px;
  font-size: 14.5px; font-weight: 700; letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.28s cubic-bezier(0.22,1,0.36,1), box-shadow 0.28s, background 0.28s, color 0.28s;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--btn); color: #fff;
  box-shadow: 0 10px 26px var(--shadow-soft);
}
.btn-primary:hover, .btn-primary:focus-visible { background: var(--btn-hover); transform: translateY(-2px); box-shadow: 0 14px 32px var(--shadow-mid); }
.btn-ghost {
  background: transparent; color: var(--title);
  border: 1.5px solid var(--title);
}
.btn-ghost:hover, .btn-ghost:focus-visible { background: var(--title); color: var(--bg-soft); }
.btn-light {
  background: var(--bg-soft); color: var(--title);
}
.btn-light:hover, .btn-light:focus-visible { background: #fff; transform: translateY(-2px); }
.btn-block { width: 100%; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  height: var(--header-h);
  display: flex; align-items: center;
  background: rgba(233, 215, 204, 0.82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.header.is-scrolled { border-color: var(--divider); box-shadow: 0 6px 24px var(--shadow-soft); }
.header .container { display: flex; align-items: center; justify-content: space-between; width: 100%; }

.brand { font-family: var(--font-serif); font-style: italic; font-weight: 600; font-size: 22px; color: var(--title); }
.brand span { display: block; font-family: var(--font-sans); font-style: normal; font-size: 9.5px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--btn); margin-top: 2px; }

.nav-desktop { display: flex; align-items: center; gap: 36px; }
.nav-desktop a {
  font-size: 14px; font-weight: 600; color: var(--text);
  position: relative; padding: 4px 0;
}
.nav-desktop a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--btn); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.nav-desktop a:hover::after, .nav-desktop a:focus-visible::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 18px; }
.header-actions .btn-primary { padding: 12px 24px; font-size: 13.5px; }

.menu-toggle {
  display: none; width: 44px; height: 44px; border-radius: 50%;
  align-items: center; justify-content: center; color: var(--title);
  background: var(--card);
}
.menu-toggle svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .header-actions .btn-primary span.long { display: none; }
  .menu-toggle { display: flex; }
}

/* ===== MOBILE DRAWER ===== */
.drawer-overlay {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(49, 29, 18, 0.45);
  opacity: 0; visibility: hidden;
  transition: opacity 0.35s ease, visibility 0s linear 0.35s;
}
.drawer-overlay.is-open { opacity: 1; visibility: visible; transition: opacity 0.35s ease, visibility 0s linear 0s; }

.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 260;
  width: min(86vw, 340px);
  background: var(--bg-soft);
  box-shadow: -18px 0 50px var(--shadow-mid);
  padding: 26px 26px 30px;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), visibility 0s linear 0.4s;
}
.drawer.is-open { transform: translateX(0); visibility: visible; transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), visibility 0s linear 0s; }

.drawer-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.brand--drawer { font-size: 19px; }
.drawer-close { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--card); color: var(--title); }
.drawer-close svg { width: 18px; height: 18px; }

.drawer-nav { display: flex; flex-direction: column; gap: 4px; }
.drawer-nav a {
  padding: 14px 4px; font-size: 17px; font-weight: 600; color: var(--title);
  font-family: var(--font-serif); border-bottom: 1px solid var(--divider);
}
.drawer-footer { margin-top: auto; padding-top: 24px; }

/* ===== HERO ===== */
/* A entrada do hero é animada em CSS puro, sem depender do script.js.
   Como é o conteúdo principal da primeira tela, ele precisa aparecer sempre. */
@keyframes hero-in {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-anim { animation: hero-in 0.8s cubic-bezier(0.22,1,0.36,1) both; }
.hero .eyebrow.hero-anim  { animation-delay: 0.05s; }
.hero h1.hero-anim        { animation-delay: 0.15s; }
.hero-image-col.hero-anim { animation-delay: 0.20s; }
.hero-sub.hero-anim       { animation-delay: 0.25s; }
.hero-badges.hero-anim    { animation-delay: 0.35s; }
.hero-desc.hero-anim      { animation-delay: 0.45s; }
.hero-cta.hero-anim       { animation-delay: 0.55s; }
@media (prefers-reduced-motion: reduce) {
  .hero-anim { animation: none; }
}

.hero {
  padding: calc(var(--header-h) + 40px) 0 70px;
  position: relative;
}
.hero .container {
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 56px; align-items: center;
}
.hero-text-a { grid-column: 1; grid-row: 1; }
.hero-image-col { grid-column: 2; grid-row: 1 / 3; }
.hero-text-b { grid-column: 1; grid-row: 2; }

.hero-eyebrow { margin-bottom: 18px; }
.hero h1 { font-size: clamp(38px, 5.4vw, 60px); letter-spacing: -0.01em; }
.hero-sub {
  margin-top: 12px; font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(19px, 2.4vw, 24px); color: var(--btn);
}
.hero-desc { margin-top: 22px; max-width: 460px; font-size: 17px; line-height: 1.65; color: var(--text); }
.hero-cta { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }

.hero-badges { margin-top: 26px; display: flex; gap: 12px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px;
  background: var(--dark); color: #F5ECE6;
  border-radius: 100px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.01em;
  box-shadow: 0 10px 24px var(--shadow-soft);
}
.hero-badge svg { width: 17px; height: 17px; color: var(--rose); flex-shrink: 0; }
@media (max-width: 480px) { .hero-badge { padding: 11px 18px; font-size: 13px; } }

.hero-image-frame {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 30px 70px var(--shadow-mid);
  aspect-ratio: 4 / 5;
}
.hero-image-frame img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
.hero-image-frame::after {
  content: ''; position: absolute; inset: 0; border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.35);
  pointer-events: none;
}

/* Foto de fundo do hero, exclusiva do desktop (ver media query abaixo) */
.hero-bg-desktop { display: none; }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; gap: 30px; }
  .hero-text-a { grid-column: 1; grid-row: 1; }
  .hero-image-col { grid-column: 1; grid-row: 2; }
  .hero-text-b { grid-column: 1; grid-row: 3; }
  .hero-image-frame { aspect-ratio: 4 / 4.6; max-width: 420px; margin: 0 auto; }
  .hero-desc { max-width: 100%; }
}

/* ===== HERO DESKTOP: foto horizontal de fundo com texto sobreposto ===== */
@media (min-width: 901px) {
  .hero {
    min-height: max(620px, 88vh);
    display: flex;
    align-items: center;
    padding-top: var(--header-h);
    padding-bottom: 0;
  }
  .hero-bg-desktop {
    display: block;
    position: absolute; top: var(--header-h); left: 0; right: 0; bottom: 0;
  }
  .hero-bg-desktop::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(49,29,18,0.60) 0%, rgba(49,29,18,0.30) 38%, rgba(49,29,18,0) 62%);
  }
  .hero-bg-desktop picture { display: block; width: 100%; height: 100%; }
  .hero-bg-desktop img { width: 100%; height: 100%; object-fit: cover; object-position: right top; }

  .hero .container {
    position: relative; z-index: 1; display: block;
    max-width: none; margin: 0;
    padding: 0 24px 0 clamp(24px, 6vw, 96px);
  }
  .hero-text-a, .hero-text-b { max-width: 480px; }
  .hero-image-col { display: none; }

  .hero .eyebrow { color: #F0DCC9; }
  .hero .eyebrow::before, .hero .eyebrow::after { background: rgba(240,220,201,0.55); }
  .hero h1 { color: #FBF3EC; }
  .hero-sub { color: #E7C9AE; }
  .hero-desc { color: rgba(251,243,236,0.92); }
  .hero .btn-ghost { border-color: #FBF3EC; color: #FBF3EC; }
  .hero .btn-ghost:hover, .hero .btn-ghost:focus-visible { background: #FBF3EC; color: var(--title); }
}
@media (max-width: 480px) {
  .hero { padding-top: calc(var(--header-h) + 22px); }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
}

/* ===== SOBRE ===== */
.sobre .container { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 60px; align-items: center; }
.sobre-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 24px 56px var(--shadow-soft); aspect-ratio: 3/4; }
.sobre-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }
.sobre-text .eyebrow { margin-bottom: 10px; }
.sobre-text h2 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 20px; }
.sobre-text p { margin-bottom: 16px; font-size: 16px; line-height: 1.75; }
.sobre-text p:last-of-type { margin-bottom: 0; }
.sobre-note {
  margin-top: 26px; padding: 16px 18px; border-radius: var(--radius-sm);
  background: var(--card); font-size: 12.5px; color: var(--text); opacity: 0.7;
  border-left: 3px solid var(--btn);
}
@media (max-width: 860px) {
  .sobre .container { grid-template-columns: 1fr; gap: 34px; }
  .sobre-image { max-width: 340px; margin: 0 auto; }
}

/* ===== AREAS DE ATUACAO ===== */
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 10px; }
.area-card {
  background: var(--bg-soft); border-radius: var(--radius-md); padding: 36px 30px;
  border: 1px solid var(--divider); transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.area-card:hover { transform: translateY(-5px); box-shadow: 0 20px 44px var(--shadow-soft); border-color: var(--btn); }
.area-icon {
  width: 52px; height: 52px; border-radius: 16px; background: var(--dark);
  display: flex; align-items: center; justify-content: center; color: var(--bg-soft); margin-bottom: 20px;
}
.area-icon svg { width: 24px; height: 24px; }
.area-card h3 { font-size: 23px; margin-bottom: 10px; }
.area-card p { font-size: 15px; line-height: 1.6; }
@media (max-width: 640px) { .areas-grid { grid-template-columns: 1fr; } }

/* ===== FAIXA DE DESTAQUE (banda escura, traz contraste desde cedo) ===== */
.faixa-destaque { background: var(--dark); padding: 54px 0; }
.faixa-destaque .eyebrow { color: var(--rose); margin: 0 auto 14px; justify-content: center; }
.faixa-destaque .eyebrow::before, .faixa-destaque .eyebrow::after { background: var(--rose); }
.faixa-destaque p {
  max-width: 700px; margin: 0 auto; text-align: center;
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: clamp(19px, 2.6vw, 27px); line-height: 1.55; color: #F5ECE6;
}

/* ===== PROCEDIMENTOS ===== */
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 10px; }
.proc-card {
  background: var(--bg-soft); border: 1px solid var(--divider); border-radius: var(--radius-md);
  padding: 30px 26px; transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.proc-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px var(--shadow-soft); border-color: var(--rose); }
.proc-icon {
  width: 46px; height: 46px; border-radius: 13px; background: var(--dark);
  display: flex; align-items: center; justify-content: center; color: var(--bg-soft); margin-bottom: 18px;
}
.proc-icon svg { width: 21px; height: 21px; }
.proc-card h3 { font-size: 19px; margin-bottom: 8px; }
.proc-card p { font-size: 14.5px; line-height: 1.6; }

.proc-media {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 54px;
}
.proc-media-text .eyebrow { margin-bottom: 10px; }
.proc-media-text h2 { font-size: clamp(26px, 3.4vw, 34px); margin-bottom: 16px; }
.proc-media-text p { font-size: 15.5px; line-height: 1.7; }
.proc-media-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: 0 22px 50px var(--shadow-soft); aspect-ratio: 4/3; }
.proc-media-img img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 900px) { .proc-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 860px) { .proc-media { grid-template-columns: 1fr; gap: 24px; } .proc-media-img { order: -1; max-width: 420px; margin: 0 auto; } }
@media (max-width: 560px) { .proc-grid { grid-template-columns: 1fr; } }

.proc-disclaimer {
  margin-top: 40px; text-align: center; font-size: 13px; color: var(--text); opacity: 0.65;
  max-width: 620px; margin-left: auto; margin-right: auto;
}

/* ===== RESULTADOS ===== */
.resultados-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.resultado-card {
  border-radius: var(--radius-md); overflow: hidden; background: var(--bg-soft);
  border: 1px solid var(--divider); cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}
.resultado-card:hover, .resultado-card:focus-visible { transform: translateY(-4px); box-shadow: 0 20px 44px var(--shadow-soft); }
.resultado-card img { width: 100%; aspect-ratio: 4/3; object-fit: contain; background: var(--card); }
.resultado-meta { padding: 16px 18px; }
.resultado-meta .tag { font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--btn); }
.resultado-meta .fill {
  margin-top: 6px; font-size: 13.5px; line-height: 1.45; color: var(--text); opacity: 0.85;
}
@media (max-width: 900px) { .resultados-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .resultados-grid { grid-template-columns: 1fr; } }

.resultados-aviso {
  margin-top: 34px; padding: 20px 24px; border-radius: var(--radius-md);
  background: var(--card); border-left: 4px solid var(--btn);
  font-size: 14px; line-height: 1.6; max-width: 760px; margin-left: auto; margin-right: auto;
}
.resultados-aviso strong { color: var(--title); }
.resultados-consent {
  margin-top: 16px; font-size: 12px; color: var(--text); opacity: 0.6; text-align: center;
}

/* ===== MODAL GALERIA ===== */
.lightbox {
  position: fixed; inset: 0; z-index: 400;
  display: flex; align-items: center; justify-content: center; padding: 24px;
  background: rgba(49, 29, 18, 0.82);
  opacity: 0; visibility: hidden;
  transition: opacity 0.32s ease, visibility 0s linear 0.32s;
}
.lightbox.is-open { opacity: 1; visibility: visible; transition: opacity 0.32s ease, visibility 0s linear 0s; }
.lightbox-inner { position: relative; max-width: 900px; width: 100%; }
.lightbox-inner img { width: 100%; border-radius: var(--radius-md); box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.lightbox-close {
  position: absolute; top: -52px; right: 0; width: 44px; height: 44px; border-radius: 50%;
  background: var(--bg-soft); color: var(--title); display: flex; align-items: center; justify-content: center;
}
.lightbox-close svg { width: 17px; height: 17px; }
.lightbox-caption { margin-top: 14px; text-align: center; color: var(--bg-soft); font-size: 13px; opacity: 0.85; }

/* ===== DIFERENCIAIS ===== */
.dif-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.dif-card { text-align: center; padding: 10px; }
.dif-icon {
  width: 58px; height: 58px; border-radius: 50%; background: var(--dark);
  display: flex; align-items: center; justify-content: center; color: var(--bg-soft);
  margin: 0 auto 18px;
}
.dif-icon svg { width: 25px; height: 25px; }
.dif-card h3 { font-size: 17.5px; margin-bottom: 6px; font-family: var(--font-sans); font-weight: 700; color: var(--title); }
.dif-card p { font-size: 14px; opacity: 0.85; }
@media (max-width: 860px) { .dif-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .dif-grid { grid-template-columns: 1fr; } }

/* ===== LOCAIS ===== */
.locais-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.local-card {
  background: var(--bg-soft); border: 1px solid var(--divider); border-radius: var(--radius-lg);
  overflow: hidden;
}
.local-map { width: 100%; height: 200px; border: 0; filter: sepia(14%) saturate(85%); display: block; }
.local-body { padding: 28px 26px 30px; }
.local-tag {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--btn); margin-bottom: 10px;
}
.local-card h3 { font-size: 22px; margin-bottom: 4px; }
.local-card address { font-style: normal; font-size: 14.5px; line-height: 1.6; margin: 10px 0 20px; opacity: 0.9; }
@media (max-width: 780px) { .locais-grid { grid-template-columns: 1fr; } }

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: var(--bg-soft); border: 1px solid var(--divider); border-radius: var(--radius-md);
  overflow: hidden;
}
.faq-item summary {
  list-style: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; font-family: var(--font-serif); font-weight: 600; font-size: 17.5px; color: var(--title);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; background: var(--card); display: flex; align-items: center; justify-content: center; color: var(--title); transition: transform 0.3s; }
.faq-icon svg { width: 13px; height: 13px; }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-body { padding: 0 24px 22px; font-size: 15px; line-height: 1.65; opacity: 0.9; }

/* ===== CTA FINAL (secao escura) ===== */
.cta-final {
  --bg: var(--dark); --bg-soft: var(--dark); --title: var(--bg-soft-light, #F5ECE6); --text: #E9D7CC;
  background: var(--dark); color: #E9D7CC; position: relative; overflow: hidden;
}
.cta-final .container { display: grid; grid-template-columns: 1fr 0.85fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.cta-final h2 { color: #F5ECE6; font-size: clamp(28px, 4vw, 40px); }
.cta-final p { margin-top: 16px; font-size: 16px; line-height: 1.7; color: rgba(233,215,204,0.82); max-width: 440px; }
.cta-final .btn { margin-top: 28px; }
.cta-final .eyebrow { color: var(--rose); }
.cta-final .eyebrow::before, .cta-final .eyebrow::after { background: var(--rose); }
.cta-final-image { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; box-shadow: 0 30px 70px rgba(0,0,0,0.4); }
.cta-final-image img { width: 100%; height: 100%; object-fit: cover; object-position: center 18%; }
@media (max-width: 860px) {
  .cta-final .container { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .cta-final p { margin-left: auto; margin-right: auto; }
  .cta-final-image { max-width: 320px; margin: 0 auto; order: -1; }
}

/* ===== FOOTER ===== */
.footer { background: var(--dark); color: #E9D7CC; padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(233,215,204,0.14); }
.footer-brand-name { font-family: var(--font-serif); font-style: italic; font-weight: 600; font-size: 24px; color: #F5ECE6; }
.footer-brand-tag { margin-top: 8px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); }
.footer-brand-cities { margin-top: 14px; font-size: 14px; color: rgba(233,215,204,0.75); }
.footer h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(233,215,204,0.5); margin-bottom: 16px; }
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a, .footer-links span { font-size: 14.5px; color: rgba(233,215,204,0.85); display: flex; align-items: center; gap: 8px; }
.footer-links a:hover { color: #F5ECE6; }
.footer-links svg { width: 15px; height: 15px; flex-shrink: 0; opacity: 0.7; }
.footer-links .pending { opacity: 0.5; font-style: italic; }
.footer-bottom { padding-top: 24px; display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; font-size: 12.5px; color: rgba(233,215,204,0.5); }
.pending--visible { opacity: 1 !important; }
.link-underline { text-decoration: underline; }

/* ===== PAGINA: POLITICA DE PRIVACIDADE ===== */
.policy-main { padding: calc(var(--header-h) + 48px) 0 80px; }
.policy-main .container { max-width: 760px; }
.policy-main h1 { font-size: clamp(30px, 4vw, 42px); margin-bottom: 8px; }
.policy-updated { font-size: 13px; color: var(--text); opacity: 0.65; margin-bottom: 40px; }
.policy-main h2 { font-size: 22px; margin-top: 40px; margin-bottom: 14px; }
.policy-main p, .policy-main li { font-size: 15.5px; line-height: 1.75; color: var(--text); }
.policy-main ul { padding-left: 22px; margin-top: 10px; }
.policy-main li { margin-bottom: 8px; }
.policy-back { display: inline-flex; align-items: center; gap: 8px; margin-top: 48px; font-weight: 700; color: var(--title); }
.policy-note { margin-top: 6px; padding: 14px 16px; background: var(--card); border-radius: var(--radius-sm); border-left: 3px solid var(--btn); font-size: 13.5px; }
.footer-bottom-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-bottom-links a:hover, .footer-bottom-links a:focus-visible { color: #F5ECE6; text-decoration: underline; }
@media (max-width: 780px) { .footer-grid { grid-template-columns: 1fr; gap: 30px; } }

/* ===== WHATSAPP FLUTUANTE ===== */
.wa-float {
  position: fixed; right: 20px; bottom: 20px; z-index: 190;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1);
}
.wa-float:hover, .wa-float:focus-visible { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }
@media (max-width: 480px) { .wa-float { right: 16px; bottom: 16px; width: 52px; height: 52px; } .wa-float svg { width: 25px; height: 25px; } }