/* ===========================================
   Lady Advance — Sistema Visual
   Femenino / elegante — rosa nude + champagne + marfil
   =========================================== */

:root {
  /* Rosa oscuro nude (primario) */
  --rose-950: #3a242a;
  --rose-900: #4a2e35;
  --rose-800: #5e3a43;
  --rose-700: #7d4e5b;
  --rose-600: #946571;
  --rose-500: #ad8089;

  /* Champagne (secundario) + copper de acento (del logo) */
  --champ-300: #e8c4a0;
  --champ-400: #dcae84;
  --champ-500: #c89a6d;
  --copper-500: #b07b52;
  --copper-600: #9a6843;

  /* Marfil cálido (fondo / neutro) */
  --marfil-50: #faf3e9;
  --marfil-100: #f5e8d8;
  --marfil-200: #ecdcc6;

  --ink: #3a2a2e;
  --ink-soft: #5e4a50;
  --ink-mute: #897279;

  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter Tight", "Helvetica Neue", system-ui, sans-serif;

  --container: 1240px;
  --container-narrow: 940px;
  --gutter: clamp(20px, 4vw, 48px);

  --shadow-sm: 0 4px 12px rgba(58, 36, 42, 0.08);
  --shadow-md: 0 14px 36px rgba(58, 36, 42, 0.14);
  --shadow-lg: 0 28px 70px rgba(58, 36, 42, 0.24);
  --shadow-rose: 0 14px 40px rgba(125, 78, 91, 0.30);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--marfil-50);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ---------- Tipografía ---------- */
.serif { font-family: var(--font-serif); font-weight: 500; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--copper-600);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--copper-500); }
.eyebrow.center::before { display: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.h-display { font-size: clamp(46px, 6.6vw, 92px); line-height: 0.99; letter-spacing: -0.025em; font-weight: 400; }
.h-section { font-size: clamp(34px, 4.6vw, 60px); line-height: 1.03; font-weight: 400; }

p.lead {
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.6;
  color: var(--ink-soft);
  text-wrap: pretty;
}
.italic-accent { font-style: italic; color: var(--copper-500); font-weight: 400; }

/* ---------- Container ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }

/* ---------- Botones ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 34px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
}
.btn-rose {
  background: linear-gradient(135deg, var(--rose-700) 0%, var(--rose-800) 100%);
  color: var(--marfil-50);
  box-shadow: var(--shadow-rose);
}
.btn-rose:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 50px rgba(125, 78, 91, 0.42);
  background: linear-gradient(135deg, var(--rose-600) 0%, var(--rose-700) 100%);
}
.btn-champ {
  background: linear-gradient(135deg, var(--champ-300) 0%, var(--champ-400) 100%);
  color: var(--rose-900);
  box-shadow: 0 14px 40px rgba(220, 174, 132, 0.4);
}
.btn-champ:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--champ-300) 0%, var(--champ-300) 100%);
  box-shadow: 0 20px 52px rgba(220, 174, 132, 0.5);
}
.btn-outline {
  background: transparent;
  color: var(--marfil-50);
  border: 1px solid rgba(232, 196, 160, 0.45);
}
.btn-outline:hover { border-color: var(--champ-300); background: rgba(232, 196, 160, 0.10); }
.btn .arrow { transition: transform 0.35s; display: inline-block; }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0; transition: all 0.4s ease; background: transparent;
}
.nav.scrolled {
  background: rgba(74, 46, 53, 0.92);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  padding: 12px 0; box-shadow: 0 1px 0 rgba(232, 196, 160, 0.18);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.nav-brand { display: flex; align-items: center; gap: 13px; text-decoration: none; color: var(--marfil-50); }
.nav-brand img { width: 60px; height: 60px; border-radius: 50%; background: #fff; padding: 5px; box-shadow: 0 4px 16px rgba(58,36,42,0.22); transition: width .4s, height .4s; }
.nav.scrolled .nav-brand img { width: 48px; height: 48px; }
.nav-brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav-brand-text strong {
  font-family: var(--font-serif); font-size: 23px; font-weight: 500;
  letter-spacing: 0.03em; line-height: 1; margin-bottom: 4px;
}
.nav.scrolled .nav-brand-text strong { font-size: 20px; }
.nav-brand-text span {
  font-size: 10px; font-weight: 400; letter-spacing: 0.30em;
  color: var(--champ-300); text-transform: uppercase;
}
.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; }
.nav-links a {
  color: var(--marfil-50); text-decoration: none; font-size: 14px;
  letter-spacing: 0.04em; position: relative; padding: 4px 0; transition: color 0.3s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--champ-300); transition: width 0.35s ease;
}
.nav-links a:hover { color: var(--champ-300); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--champ-300); color: var(--rose-900); padding: 12px 22px;
  font-size: 12px; font-weight: 600; letter-spacing: 0.10em; text-transform: uppercase;
  text-decoration: none; transition: all 0.3s;
}
.nav-cta:hover { background: var(--champ-400); transform: translateY(-1px); }
.nav-toggle {
  display: none; background: transparent; border: none; color: var(--marfil-50);
  cursor: pointer; width: 40px; height: 40px; align-items: center; justify-content: center;
}
.nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 900px) {
  .nav-links, .nav > .container > .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav.nav-mobile-open .nav-links {
    display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--rose-900); padding: 24px var(--gutter); gap: 18px;
    border-top: 1px solid rgba(232, 196, 160, 0.18);
  }
}

/* ---------- Sections ---------- */
section { position: relative; }
.section-pad { padding: clamp(80px, 10vw, 132px) 0; }

.bg-marfil { background: var(--marfil-50); }
.bg-marfil-2 { background: var(--marfil-100); }
.bg-rose { background: var(--rose-800); color: var(--marfil-50); }
.bg-rose h1, .bg-rose h2, .bg-rose h3 { color: var(--marfil-50); }
.bg-rose p.lead { color: rgba(245, 232, 216, 0.82); }
.bg-rose-deep { background: var(--rose-950); color: var(--marfil-50); }
.bg-rose-deep h1, .bg-rose-deep h2, .bg-rose-deep h3 { color: var(--marfil-50); }
.bg-rose .eyebrow, .bg-rose-deep .eyebrow { color: var(--champ-300); }
.bg-rose .eyebrow::before, .bg-rose-deep .eyebrow::before { background: var(--champ-300); }
.bg-rose .italic-accent, .bg-rose-deep .italic-accent { color: var(--champ-300); }

/* ---------- Hero ---------- */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: var(--rose-800); color: var(--marfil-50);
  position: relative; overflow: hidden; padding: 130px 0 80px;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 760px 620px at 18% 16%, rgba(232, 196, 160, 0.16) 0%, transparent 60%),
    radial-gradient(ellipse 900px 760px at 88% 88%, rgba(58, 36, 42, 0.55) 0%, transparent 60%),
    linear-gradient(180deg, var(--rose-900) 0%, var(--rose-800) 100%);
  pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 84px); align-items: center; position: relative; z-index: 2;
}
.hero-grid-solo { grid-template-columns: 1fr; max-width: 880px; }
.hero-grid-solo .hero-copy .lead { max-width: 620px; }
.hero-copy h1 { color: var(--marfil-50); margin-bottom: 26px; text-shadow: 0 2px 32px rgba(0,0,0,0.3); }
.hero-copy h1 .italic-accent { color: var(--champ-300); }
.hero-copy .lead { color: rgba(245, 232, 216, 0.84); margin-bottom: 38px; max-width: 520px; }
.hero-cta-row { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-meta {
  display: flex; gap: 36px; margin-top: 52px; padding-top: 30px;
  border-top: 1px solid rgba(232, 196, 160, 0.20); flex-wrap: wrap;
}
.hero-meta-item .num {
  font-family: var(--font-serif); font-size: 38px; color: var(--champ-300);
  display: block; line-height: 1; font-weight: 400;
}
.hero-meta-item .label {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(245, 232, 216, 0.64); margin-top: 8px; display: block;
}

/* Hero photo */
.hero-photo {
  position: relative; border-radius: 20px; overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--copper-500);
  outline: 1px solid rgba(232, 196, 160, 0.45); outline-offset: 3px;
  width: 270px; max-width: 100%; margin-left: auto; height: 380px;
}
.hero-photo::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(74,46,53,0.28) 100%);
  pointer-events: none;
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 18%; display: block; }
.hero-visual { position: relative; display: flex; align-items: flex-start; justify-content: flex-end; align-self: stretch; }
.hero-medallion {
  position: relative; width: min(440px, 80vw); aspect-ratio: 1; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.hero-medallion::before {
  content: ""; position: absolute; inset: -6%; border-radius: 50%;
  border: 1px solid rgba(232, 196, 160, 0.4);
}
.hero-medallion::after {
  content: ""; position: absolute; inset: -14%; border-radius: 50%;
  border: 1px solid rgba(232, 196, 160, 0.18);
}
.hero-medallion img {
  width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
  box-shadow: var(--shadow-lg);
}

@media (max-width: 900px) {
  .hero { min-height: auto; padding: 120px 0 64px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-medallion { width: min(320px, 70vw); }
}

/* ---------- Section header ---------- */
.section-head { text-align: center; max-width: 760px; margin: 0 auto clamp(48px, 6vw, 76px); }
.section-head h2 { margin-top: 16px; margin-bottom: 22px; }
.section-head p { color: var(--ink-soft); }
.bg-rose .section-head p, .bg-rose-deep .section-head p { color: rgba(245, 232, 216, 0.78); }

/* ---------- Symptoms ---------- */
.symptoms-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px;
  max-width: 900px; margin: 0 auto;
}
.symptom {
  padding: 24px 28px; background: var(--marfil-50);
  border-left: 2px solid var(--champ-400); border-radius: 0 6px 6px 0;
  font-size: 16px; color: var(--ink-soft); line-height: 1.5;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bg-marfil-2 .symptom { background: #fff; }
.symptom:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
@media (max-width: 620px) { .symptoms-grid { grid-template-columns: 1fr; } }

/* ---------- Tech split ---------- */
.tech-split { display: grid; grid-template-columns: 1fr 1fr; gap: 0; align-items: stretch; }
.tech-split-visual {
  position: relative; min-height: 320px; overflow: hidden;
  background: linear-gradient(150deg, var(--rose-700) 0%, var(--rose-900) 100%);
  display: flex; align-items: center; justify-content: center;
}
.tech-split-visual .stat-ring {
  position: relative; text-align: center; color: var(--marfil-50); z-index: 2; padding: 24px;
}
.tech-split-visual .stat-ring .big {
  font-family: var(--font-serif); font-size: clamp(64px, 9vw, 116px);
  line-height: 0.9; color: var(--champ-300); font-weight: 400;
}
.tech-split-visual .stat-ring.word .big { font-size: clamp(46px, 6vw, 78px); letter-spacing: -0.02em; }
.tech-split-visual .stat-ring .unit {
  font-size: 13px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(245, 232, 216, 0.82); margin-top: 16px;
}
.tech-split-visual::before {
  content: ""; position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(232, 196, 160, 0.35);
}
.tech-split-visual::after {
  content: ""; position: absolute; width: 96%; aspect-ratio: 1; border-radius: 50%;
  border: 1px solid rgba(232, 196, 160, 0.16);
}
.tech-split-content { padding: clamp(40px, 6vw, 76px); display: flex; flex-direction: column; justify-content: center; }
.tech-split-content h3 { font-size: clamp(30px, 3.4vw, 46px); margin: 16px 0 22px; font-weight: 400; }
.tech-feature-list { list-style: none; margin-top: 30px; display: flex; flex-direction: column; gap: 15px; }
.tech-feature-list li { padding-left: 28px; position: relative; font-size: 15.5px; color: var(--ink-soft); line-height: 1.55; }
.bg-rose .tech-feature-list li, .bg-rose-deep .tech-feature-list li { color: rgba(245, 232, 216, 0.82); }
.tech-feature-list li::before {
  content: ""; position: absolute; left: 0; top: 10px; width: 14px; height: 1px; background: var(--champ-400);
}
@media (max-width: 820px) {
  .tech-split { grid-template-columns: 1fr; }
  .tech-split-visual { min-height: 300px; }
}

/* Radiofrecuencia — panel contenido (no estira a todo el alto) */
.tech-rf .tech-split { align-items: center; }
.tech-rf .tech-split-visual {
  min-height: 0; height: clamp(300px, 42vh, 380px);
  border-radius: 16px; margin: clamp(28px, 4vw, 56px);
}
@media (max-width: 820px) {
  .tech-rf .tech-split-visual { margin: 0 0 8px; height: 260px; border-radius: 0; }
}

/* Electromagnética (20,000) — panel contenido */
.tech-em .tech-split { align-items: center; }
.tech-em .tech-split-visual {
  min-height: 0; height: clamp(300px, 42vh, 380px);
  border-radius: 16px; margin: clamp(28px, 4vw, 56px);
}
@media (max-width: 820px) {
  .tech-em .tech-split-visual { margin: 0 0 8px; height: 260px; border-radius: 0; }
}

/* ---------- Benefits ---------- */
.benefits-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(232, 196, 160, 0.22); border: 1px solid rgba(232, 196, 160, 0.22);
}
.benefit { background: var(--rose-800); padding: 46px 30px; text-align: left; transition: background 0.4s; }
.benefit:hover { background: var(--rose-700); }
.benefit-num {
  font-family: var(--font-serif); font-style: italic; font-size: 14px;
  color: var(--champ-300); margin-bottom: 28px; display: block; letter-spacing: 0.04em;
}
.benefit h3 { color: var(--marfil-50); font-size: 20px; font-weight: 500; line-height: 1.2; margin-bottom: 12px; }
.benefit p { color: rgba(245, 232, 216, 0.70); font-size: 14px; line-height: 1.55; }
@media (max-width: 900px) { .benefits-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .benefits-grid { grid-template-columns: 1fr; } }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 46px; }
.step { position: relative; padding-top: 30px; }
.step::before { content: ""; position: absolute; top: 0; left: 0; width: 48px; height: 1px; background: var(--champ-500); }
.step-num {
  font-family: var(--font-serif); font-style: italic; color: var(--copper-500);
  font-size: 14px; display: block; margin-bottom: 14px; letter-spacing: 0.05em;
}
.step h3 { font-size: 26px; margin-bottom: 12px; font-weight: 500; }
.step p { color: var(--ink-soft); }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; gap: 38px; } }

/* ---------- Quote / angle band ---------- */
.angle-band { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.angle-card {
  background: var(--marfil-50); border: 1px solid var(--marfil-200); border-radius: 8px;
  padding: 38px 34px; transition: transform 0.4s, box-shadow 0.4s;
}
.angle-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.angle-card .tag {
  font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--copper-600); font-weight: 600; margin-bottom: 16px; display: block;
}
.angle-card p {
  font-family: var(--font-serif); font-size: clamp(22px, 2.2vw, 28px);
  font-style: italic; color: var(--ink); line-height: 1.3;
}
@media (max-width: 700px) { .angle-band { grid-template-columns: 1fr; } }

/* ---------- Combo / protocolo integral ---------- */
.combo-grid {
  display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px;
  align-items: stretch; max-width: 920px; margin: 0 auto;
}
.combo-card {
  background: var(--rose-800); border: 1px solid rgba(232, 196, 160, 0.22);
  border-radius: 10px; padding: 38px 34px;
}
.combo-tag {
  font-size: 11px; letter-spacing: 0.20em; text-transform: uppercase;
  color: var(--champ-300); font-weight: 600; margin-bottom: 10px; display: block;
}
.combo-card h3 { color: var(--marfil-50); font-size: 26px; font-weight: 500; margin-bottom: 22px; }
.combo-card ul { list-style: none; display: flex; flex-direction: column; gap: 13px; }
.combo-card li {
  padding-left: 26px; position: relative; font-size: 15.5px;
  color: rgba(245, 232, 216, 0.82); line-height: 1.45;
}
.combo-card li::before {
  content: ""; position: absolute; left: 0; top: 9px; width: 13px; height: 1px; background: var(--champ-400);
}
.combo-plus {
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 52px; color: var(--champ-300);
  align-self: center; line-height: 1;
}
@media (max-width: 700px) {
  .combo-grid { grid-template-columns: 1fr; gap: 16px; }
  .combo-plus { padding: 4px 0; font-size: 40px; }
}

/* ---------- Equipo showcase (protocolo) ---------- */
.equipo-showcase {
  max-width: 920px; margin: 0 auto clamp(36px, 5vw, 60px);
  border-radius: 16px; overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(232, 196, 160, 0.22);
}
.equipo-showcase img { width: 100%; display: block; }
.equipo-showcase figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 40px 28px 20px; font-size: 13.5px; letter-spacing: 0.02em;
  color: var(--marfil-50); text-align: center;
  background: linear-gradient(to top, rgba(58,36,42,0.82) 0%, transparent 100%);
}
@media (max-width: 560px) {
  .equipo-showcase figcaption { font-size: 12px; padding: 32px 16px 14px; }
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 880px; margin: 0 auto; border-top: 1px solid rgba(58, 42, 46, 0.12); }
.bg-rose .faq-list, .bg-rose-deep .faq-list { border-top-color: rgba(232, 196, 160, 0.22); }
.faq-item { border-bottom: 1px solid rgba(58, 42, 46, 0.12); }
.bg-rose .faq-item, .bg-rose-deep .faq-item { border-bottom-color: rgba(232, 196, 160, 0.22); }
.faq-q {
  width: 100%; background: transparent; border: none; padding: 28px 0;
  font-family: var(--font-serif); font-size: clamp(20px, 2vw, 26px); font-weight: 500;
  color: var(--ink); text-align: left; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 24px; transition: color 0.3s;
}
.bg-rose .faq-q, .bg-rose-deep .faq-q { color: var(--marfil-50); }
.faq-q:hover { color: var(--copper-500); }
.bg-rose .faq-q:hover { color: var(--champ-300); }
.faq-icon {
  width: 32px; height: 32px; border: 1px solid currentColor; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  transition: transform 0.4s; color: var(--copper-500); opacity: 0.75; position: relative;
}
.bg-rose .faq-icon { color: var(--champ-300); }
.faq-icon::before, .faq-icon::after { content: ""; position: absolute; background: currentColor; }
.faq-icon::before { width: 12px; height: 1px; }
.faq-icon::after { width: 1px; height: 12px; transition: transform 0.4s; }
.faq-item.open .faq-icon::after { transform: rotate(90deg); }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.5s ease, padding 0.5s ease;
  color: var(--ink-soft); font-size: 16px; line-height: 1.7;
}
.bg-rose .faq-a, .bg-rose-deep .faq-a { color: rgba(245, 232, 216, 0.78); }
.faq-item.open .faq-a { max-height: 420px; padding: 0 0 32px; }

/* ---------- CTA banner ---------- */
.cta-banner { background: var(--rose-950); position: relative; overflow: hidden; }
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(232, 196, 160, 0.12) 0%, transparent 62%);
}
.cta-banner-inner { position: relative; z-index: 2; text-align: center; padding: clamp(80px, 10vw, 132px) 0; }
.cta-banner h2 { font-size: clamp(38px, 5.2vw, 68px); color: var(--marfil-50); margin-bottom: 22px; font-weight: 400; }
.cta-banner .italic-accent { color: var(--champ-300); }
.cta-banner p { color: rgba(245, 232, 216, 0.74); max-width: 600px; margin: 0 auto 38px; font-size: 18px; }
.cta-disclaimer { font-size: 12.5px; color: rgba(245, 232, 216, 0.5); margin-top: 28px; max-width: 600px; margin-left: auto; margin-right: auto; }

/* ---------- Banner Agenda ---------- */
.agenda-banner {
  display: block; max-width: 360px; margin: 0 auto; border-radius: 16px;
  overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid rgba(232, 196, 160, 0.22);
  transition: transform 0.4s cubic-bezier(0.2,0.8,0.2,1), box-shadow 0.4s;
}
.agenda-banner:hover { transform: translateY(-3px); box-shadow: 0 34px 80px rgba(58,36,42,0.34); }
.agenda-banner img { width: 100%; display: block; }

/* ---------- Footer ---------- */
.footer {
  background: var(--rose-950); color: rgba(245, 232, 216, 0.72);
  padding: 76px 0 36px; border-top: 1px solid rgba(232, 196, 160, 0.16);
}
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 48px; margin-bottom: 52px; }
.footer-brand img { width: 70px; height: 70px; border-radius: 50%; background: #fff; padding: 5px; margin-bottom: 18px; }
.footer-brand h4 {
  color: var(--marfil-50); font-family: var(--font-sans); font-size: 18px;
  font-weight: 600; letter-spacing: 0.04em; margin-bottom: 12px;
}
.footer-brand p { font-size: 14px; max-width: 320px; line-height: 1.6; }
.footer-col h5 {
  color: var(--champ-300); font-family: var(--font-sans); font-size: 11px;
  font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; margin-bottom: 22px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col a, .footer-col li { color: rgba(245, 232, 216, 0.72); font-size: 14px; text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--champ-300); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; padding-top: 30px;
  border-top: 1px solid rgba(232, 196, 160, 0.12); font-size: 12px;
  color: rgba(245, 232, 216, 0.5); flex-wrap: wrap; gap: 14px;
}
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- Floating WhatsApp ---------- */
.float-wa {
  position: fixed; bottom: 24px; right: 24px; width: 60px; height: 60px;
  background: #25d366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 99; box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4); text-decoration: none; transition: transform 0.3s;
}
.float-wa:hover { transform: scale(1.08); }
.float-wa svg { width: 30px; height: 30px; fill: white; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.9s cubic-bezier(0.2,0.8,0.2,1), transform 0.9s cubic-bezier(0.2,0.8,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }
