/* ============================================================
   DR. DAM GLP-1 — LANDING v3
   Sistema: "expediente cálido" — bronce/crema, Inter + Playfair
   Grammar de sección: numeral Playfair italic + kicker en caps
   ============================================================ */

:root {
  --c-bronze: #8B5E2B;
  --c-bronze-dark: #6F4A20;
  --c-bronze-deep: #4A3115;
  --c-bronze-soft: #FBE9D0;
  --c-bronze-soft-2: #FDF4E5;
  --c-bronze-tint: #F7ECDB;
  --c-orange: #F77B26;
  --c-orange-hover: #E36A14;
  --c-navy: #1A2553;
  --c-navy-hover: #111A40;
  --c-ink: #16213A;
  --c-ink-soft: #2A3553;
  --c-muted: #5C6478;
  --c-line: #ECE6DD;
  --c-bg: #FFFDFA;
  --c-bg-soft: #FAF7F2;
  --c-cream: #FDFBF8;

  --shadow-sm: 0 4px 14px rgba(74,49,21,0.06);
  --shadow-md: 0 14px 40px rgba(74,49,21,0.10);
  --shadow-lg: 0 30px 80px rgba(74,49,21,0.16);
  --shadow-bronze: 0 18px 50px rgba(139,94,43,0.30);

  --ease-out: cubic-bezier(.22,.61,.36,1);
  --radius: 18px;
  --radius-lg: 26px;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ============ MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: var(--c-orange);
  z-index: 200;
  pointer-events: none;
  transition: width 60ms linear;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: translateY(0) translateX(0) scale(1); }
.reveal-left { transform: translateX(-36px); }
.reveal-right { transform: translateX(36px); }
.reveal-scale { transform: scale(0.94); }

.stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  will-change: opacity, transform;
}
.stagger.in-view > * { opacity: 1; transform: translateY(0); }
.stagger.in-view > *:nth-child(1) { transition-delay: 0.00s; }
.stagger.in-view > *:nth-child(2) { transition-delay: 0.09s; }
.stagger.in-view > *:nth-child(3) { transition-delay: 0.18s; }
.stagger.in-view > *:nth-child(4) { transition-delay: 0.27s; }
.stagger.in-view > *:nth-child(5) { transition-delay: 0.36s; }
.stagger.in-view > *:nth-child(6) { transition-delay: 0.45s; }

@keyframes heroUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-hero-1 { animation: heroUp .8s var(--ease-out) both 0.10s; }
.anim-hero-2 { animation: heroUp .9s var(--ease-out) both 0.20s; }
.anim-hero-3 { animation: heroUp .8s var(--ease-out) both 0.35s; }
.anim-hero-4 { animation: heroUp .8s var(--ease-out) both 0.50s; }
.anim-hero-5 { animation: heroUp .8s var(--ease-out) both 0.65s; }

@keyframes heroImg {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}
.anim-hero-img { animation: heroImg 1.1s var(--ease-out) both 0.30s; }

@keyframes proofUp {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.anim-proof { animation: proofUp .8s var(--ease-out) both 1.0s; }

/* Shimmer al pasar por el CTA naranja */
.btn-orange { position: relative; overflow: hidden; isolation: isolate; }
.btn-orange::after {
  content: '';
  position: absolute;
  top: 0; left: -150%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transition: left 0.7s var(--ease-out);
  pointer-events: none;
  z-index: 1;
}
.btn-orange:hover::after { left: 150%; }

/* ============ TIPOGRAFÍA ============ */
h1, h2, h3, h4 {
  color: var(--c-ink);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.026em;
}
h1 { font-size: clamp(2.6rem, 5.8vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 2.9rem); }
h3 { font-size: 1.25rem; }
p { color: var(--c-muted); }

.accent-bronze { color: var(--c-bronze); }
.accent-italic {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* Grammar de sección: numeral Playfair + kicker
   (sistema "expediente": cada sección lleva folio) */
.kicker {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-bronze);
}
.kicker i {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.3rem;
  letter-spacing: 0;
  color: var(--c-bronze);
  opacity: 0.85;
  transform: translateY(1px);
}
.kicker::after {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--c-bronze);
  opacity: 0.4;
  align-self: center;
}
.kicker-center { justify-content: center; }
.kicker-center::after { display: none; }
.kicker-center::before {
  content: '';
  width: 44px;
  height: 1px;
  background: var(--c-bronze);
  opacity: 0.4;
  align-self: center;
}

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,253,250,0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--c-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--c-ink);
  font-weight: 800;
  letter-spacing: -0.01em;
}
.nav-brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.nav-brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.nav-brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.nav-brand-name small {
  font-size: 0.68rem;
  color: var(--c-muted);
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.nav-links { display: flex; gap: 26px; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--c-ink-soft);
  font-weight: 500;
  font-size: 0.94rem;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--c-bronze); }
.nav-cta {
  background: var(--c-orange);
  color: white !important;
  padding: 11px 20px;
  border-radius: 11px;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  transition: background .2s ease, transform .15s ease;
  box-shadow: 0 6px 18px rgba(247,123,38,0.30);
}
.nav-cta:hover { background: var(--c-orange-hover); transform: translateY(-1px); }

/* Burger (solo móvil) */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 10px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 10px;
}
.nav-burger span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--c-ink);
  transition: transform .3s var(--ease-out), opacity .2s ease;
  transform-origin: center;
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Sheet móvil */
.nav-sheet {
  position: fixed;
  inset: 0;
  z-index: 49;
  background: var(--c-cream);
  padding: 100px 28px 36px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out), visibility 0s .35s;
}
.nav-sheet.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity .35s var(--ease-out), transform .35s var(--ease-out);
}
.nav-sheet a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 16px 4px;
  text-decoration: none;
  color: var(--c-ink);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--c-line);
}
.nav-sheet a i {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--c-bronze);
  min-width: 28px;
}
.nav-sheet .nav-sheet-cta {
  margin-top: auto;
  border: none;
  background: var(--c-orange);
  color: white;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.05rem;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(247,123,38,0.35);
}
body.sheet-open { overflow: hidden; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ============ BOTONES ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  border-radius: 13px;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform .15s ease, background .2s ease, box-shadow .2s ease;
  border: none;
  cursor: pointer;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; stroke-width: 2.2; fill: none; stroke: currentColor; }
.btn-orange { background: var(--c-orange); color: white; box-shadow: 0 12px 30px rgba(247,123,38,0.35); }
.btn-orange:hover { background: var(--c-orange-hover); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(247,123,38,0.45); }
.btn-navy { background: var(--c-navy); color: white; box-shadow: 0 6px 20px rgba(26,37,83,0.25); }
.btn-navy:hover { background: var(--c-navy-hover); transform: translateY(-2px); }
.btn-bronze { background: var(--c-bronze); color: white; box-shadow: 0 10px 26px rgba(139,94,43,0.30); }
.btn-bronze:hover { background: var(--c-bronze-dark); transform: translateY(-2px); box-shadow: 0 14px 34px rgba(139,94,43,0.40); }
.btn-white { background: white; color: var(--c-ink); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(0,0,0,0.18); }

.cta-row { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }

/* Link secundario con flecha (sin peso de botón) */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--c-ink);
  text-decoration: none;
  padding: 6px 2px;
  border-bottom: 2px solid var(--c-bronze-tint);
  transition: border-color .2s ease, color .2s ease, gap .2s ease;
}
.link-arrow svg { width: 17px; height: 17px; stroke: currentColor; stroke-width: 2.2; fill: none; transition: transform .2s var(--ease-out); }
.link-arrow:hover { color: var(--c-bronze); border-color: var(--c-bronze); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  padding: clamp(56px, 8vw, 96px) 0 clamp(72px, 9vw, 120px);
  background:
    radial-gradient(1000px 560px at 108% -6%, rgba(247,123,38,0.07), transparent 55%),
    radial-gradient(900px 520px at -8% 34%, rgba(139,94,43,0.05), transparent 60%),
    linear-gradient(180deg, var(--c-cream) 0%, var(--c-bg) 72%);
  overflow: hidden;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: clamp(44px, 6vw, 84px);
  align-items: center;
}
.hero h1 { margin: 22px 0 24px; }
.hero h1 .accent-italic { color: var(--c-bronze); font-size: 0.94em; }
.hero-lede {
  font-size: 1.14rem;
  max-width: 33em;
  margin-bottom: 34px;
  color: #36405A;
  line-height: 1.7;
}
.hero-trust {
  display: flex; gap: 12px 26px; flex-wrap: wrap;
  margin-top: 40px;
  padding-top: 26px;
  border-top: 1px solid var(--c-line);
}
.trust-item {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.88rem;
  color: var(--c-ink-soft);
  font-weight: 500;
  transition: color .25s ease;
}
.trust-item:hover { color: var(--c-bronze); }
.trust-item svg { width: 17px; height: 17px; color: var(--c-bronze); fill: none; stroke: currentColor; stroke-width: 2.2; }

/* Retrato con marco de arco (consultorio, no plantilla) */
.hero-img-wrap {
  position: relative;
  max-width: 470px;
  justify-self: end;
  width: 100%;
}
.hero-img-frame {
  position: relative;
  border-radius: 999px 999px var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-bronze-tint);
}
.hero-img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 4.9;
}
.hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 1.5px solid rgba(139,94,43,0.32);
  border-radius: 999px 999px calc(var(--radius-lg) + 10px) calc(var(--radius-lg) + 10px);
  pointer-events: none;
}
.hero-proof {
  position: absolute;
  left: 50%;
  bottom: -26px;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% + 40px);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 22px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.hero-proof-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 4px rgba(34,197,94,0.18);
  flex-shrink: 0;
}
.hero-proof strong {
  color: var(--c-ink);
  font-size: 0.98rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}
.hero-proof span:last-child {
  color: var(--c-muted);
  font-size: 0.85rem;
}

/* ============ ESPECIALIDADES ============ */
.specialties {
  padding: 26px 0;
  background: var(--c-bronze-soft-2);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.specialties-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  justify-content: center;
  align-items: baseline;
}
.specialty {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.06rem;
  color: var(--c-bronze-dark);
  letter-spacing: 0.01em;
}
.specialty + .specialty::before {
  content: '·';
  margin-right: 12px;
  color: var(--c-bronze);
  opacity: 0.5;
  font-style: normal;
}

/* ============ BANNER CURSO ============ */
.course-banner-wrap { padding: 48px 0 12px; }
.course-banner {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 32px 38px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-hover) 100%);
  color: white;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(26,37,83,0.30);
  transition: transform .25s ease, box-shadow .25s ease;
}
.course-banner:hover { transform: translateY(-3px); box-shadow: 0 26px 60px rgba(26,37,83,0.40); }
.course-banner-glow {
  position: absolute;
  top: -120px; right: -80px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247,123,38,0.32) 0%, transparent 70%);
  pointer-events: none;
}
.course-banner-icon {
  width: 64px; height: 64px;
  border-radius: 999px 999px 16px 16px;
  background: var(--c-orange);
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: 0 10px 26px rgba(247,123,38,0.45);
  position: relative;
}
.course-banner-icon svg { width: 26px; height: 26px; fill: white; stroke: white; }
.course-banner-text { position: relative; }
.course-banner-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #FFB87A;
  margin-bottom: 10px;
}
.course-banner-text h3 {
  color: white;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 800;
  margin-bottom: 6px;
  line-height: 1.15;
}
.course-banner-text h3 .accent-italic { color: #FFB87A; }
.course-banner-text p {
  color: rgba(255,255,255,0.78);
  font-size: 0.96rem;
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
}
.course-banner-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
  flex-shrink: 0;
}
.course-banner-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 26px;
  background: var(--c-orange);
  color: white;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.98rem;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(247,123,38,0.40);
  transition: background .2s ease;
}
.course-banner:hover .course-banner-btn { background: var(--c-orange-hover); }
.course-banner-btn svg { width: 16px; height: 16px; }
.course-banner-cta small { color: rgba(255,255,255,0.55); font-size: 0.78rem; }
@media (max-width: 860px) {
  .course-banner { grid-template-columns: 1fr; text-align: center; gap: 18px; padding: 28px 24px; }
  .course-banner-icon { margin: 0 auto; }
  .course-banner-text p { margin: 0 auto; }
}

/* ============ STATS (banda bronce, editorial) ============ */
.stats {
  position: relative;
  background:
    radial-gradient(900px 460px at 85% -10%, rgba(247,123,38,0.16), transparent 60%),
    radial-gradient(700px 400px at 0% 110%, rgba(0,0,0,0.16), transparent 55%),
    linear-gradient(135deg, #9C6A30 0%, var(--c-bronze) 45%, var(--c-bronze-dark) 100%);
  color: white;
  padding: clamp(76px, 9vw, 110px) 0 clamp(64px, 8vw, 96px);
  overflow: hidden;
}
.stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.09) 1.2px, transparent 1.2px);
  background-size: 30px 30px;
  opacity: 0.35;
  pointer-events: none;
}
.stats-inner { position: relative; }

.stats-head { margin-bottom: clamp(44px, 6vw, 68px); max-width: 720px; }
.stats .kicker { color: rgba(255,255,255,0.92); }
.stats .kicker i { color: white; }
.stats .kicker::after { background: white; }
.stats-title {
  color: white;
  font-size: clamp(2.1rem, 3.6vw, 3.1rem);
  line-height: 1.06;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-top: 16px;
}
.stats-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: #FFE9CC;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.stat {
  padding: 8px 40px 8px 0;
  border-left: 1px solid rgba(255,255,255,0.22);
  padding-left: 32px;
}
.stat:first-child { border-left: none; padding-left: 0; }
.stat-num {
  font-size: clamp(3rem, 5.4vw, 4.6rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.035em;
  color: #FFF6EA;
  font-variant-numeric: tabular-nums;
  margin-bottom: 14px;
}
.stat-lbl {
  color: rgba(255,255,255,0.88);
  font-size: 0.96rem;
  max-width: 24em;
  line-height: 1.5;
}
.count-up { font-variant-numeric: tabular-nums; }

.stats-note {
  margin-top: clamp(44px, 6vw, 60px);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.18);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.72);
  max-width: 62em;
  line-height: 1.6;
}

/* ============ REDES SOCIALES ============ */
.socials {
  padding: clamp(64px, 8vw, 92px) 0;
  background: linear-gradient(180deg, var(--c-bronze-soft-2) 0%, var(--c-bg) 100%);
  border-bottom: 1px solid var(--c-line);
}
.socials-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.socials-head h2 { margin-top: 16px; margin-bottom: 12px; }
.socials-head p { color: var(--c-ink-soft); font-size: 1.05rem; }
.socials-handle {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--c-bronze);
}
.socials-grid {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 980px;
  margin: 0 auto;
}
.social-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 24px 15px 16px;
  background: white;
  border: 1px solid var(--c-line);
  border-radius: 16px;
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease-out), box-shadow .25s ease, border-color .25s ease;
}
.social-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--c-bronze-tint);
}
.social-icon {
  width: 46px; height: 46px;
  border-radius: 13px;
  display: grid; place-items: center;
  flex-shrink: 0;
}
.social-icon svg { width: 23px; height: 23px; fill: white; }
.social-card-text { line-height: 1.2; }
.social-name { font-weight: 800; color: var(--c-ink); font-size: 0.97rem; display: block; }
.social-handle { font-size: 0.84rem; color: var(--c-muted); }
.s-instagram .social-icon { background: linear-gradient(135deg, #FEDA77 0%, #F58529 25%, #DD2A7B 55%, #8134AF 80%, #515BD4 100%); }
.s-tiktok .social-icon { background: #111111; }
.s-youtube .social-icon { background: #FF0000; }
.s-facebook .social-icon { background: #1877F2; }
.s-spotify .social-icon { background: #1DB954; }
@media (max-width: 640px) {
  .socials-grid { flex-direction: column; align-items: stretch; max-width: 340px; }
  .social-card { justify-content: flex-start; }
}

/* ============ MAPA ============ */
.map-section {
  padding: clamp(64px, 8vw, 92px) 0;
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-bronze-soft-2) 100%);
  border-top: 1px solid var(--c-line);
}
.map-head { text-align: center; max-width: 600px; margin: 0 auto 40px; }
.map-head h2 { margin-top: 16px; margin-bottom: 12px; }
.map-head p { color: var(--c-ink-soft); font-size: 1.05rem; }
.map-frame {
  max-width: 980px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-line);
  background: #e8eaed;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.map-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.map-actions .btn svg { width: 18px; height: 18px; }
.map-addr { color: var(--c-muted); font-size: 0.92rem; }
@media (max-width: 600px) {
  .map-frame { aspect-ratio: 4 / 5; }
  .map-actions { flex-direction: column; gap: 14px; }
}

/* ============ ABOUT ============ */
.about { padding: clamp(76px, 9vw, 110px) 0; position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: clamp(48px, 6vw, 80px);
  align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-img img { aspect-ratio: 4/5; object-fit: cover; width: 100%; }
.about-img-wrap::before {
  content: '';
  position: absolute;
  inset: -16px -16px 30px 30px;
  border: 1.5px solid rgba(139,94,43,0.45);
  border-radius: var(--radius);
  z-index: -1;
}
.about h2 { margin-top: 16px; margin-bottom: 8px; }
.about-credentials {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin: 16px 0 24px;
}
.cred {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 13px;
  background: var(--c-bronze-soft);
  color: var(--c-bronze-dark);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}
.cred::before { content: '✓'; font-weight: 800; }
.about p { color: var(--c-ink-soft); margin-bottom: 14px; font-size: 1.04rem; }

/* Cita: comilla gigante Playfair, sin raya lateral */
.about-quote {
  position: relative;
  margin: 30px 0 26px;
  padding: 10px 0 0 54px;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  color: var(--c-ink);
  line-height: 1.45;
  font-weight: 500;
}
.about-quote::before {
  content: '\201C';
  position: absolute;
  left: 0;
  top: -18px;
  font-size: 5rem;
  line-height: 1;
  color: var(--c-bronze);
  opacity: 0.35;
  font-style: normal;
}
.about-signature {
  margin-top: 28px;
  display: flex; align-items: center; gap: 14px;
}
.sig-line { flex: 0 0 56px; height: 1.5px; background: var(--c-bronze); }
.sig-text { font-size: 0.92rem; color: var(--c-muted); }
.sig-text strong { color: var(--c-ink); display: block; }

/* ============ STEPS (filas editoriales) ============ */
.steps {
  padding: clamp(76px, 9vw, 110px) 0;
  background:
    radial-gradient(700px 400px at 20% 10%, rgba(247,123,38,0.05), transparent 60%),
    var(--c-bg-soft);
}
.steps-head { text-align: center; margin-bottom: clamp(44px, 6vw, 64px); }
.steps-head h2 { margin-top: 16px; }
.steps-head p { max-width: 36em; margin: 16px auto 0; font-size: 1.05rem; }

.steps-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(48px, 6vw, 76px);
  align-items: center;
}
.steps-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}
.step {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 8px;
  align-items: start;
  padding: 26px 18px 26px 8px;
  border-top: 1px solid var(--c-line);
  border-radius: 12px;
  transition: background .3s ease;
}
.step:last-child { border-bottom: 1px solid var(--c-line); }
.step:hover { background: rgba(251,233,208,0.35); }
.step-no {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--c-bronze);
  opacity: 0.55;
  transition: opacity .3s ease, transform .3s var(--ease-out);
  padding-top: 2px;
}
.step:hover .step-no { opacity: 1; transform: translateX(4px); }
.step-body h3 { font-size: 1.16rem; margin-bottom: 6px; }
.step-body p { margin: 0; font-size: 0.95rem; line-height: 1.6; }

.steps-aside { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.steps-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  width: 100%;
  max-width: 460px;
}
.steps-img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}
.steps-img img { aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.steps-img-overlay {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}
.call-btn {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(255,255,255,0.96);
  box-shadow: 0 6px 18px rgba(0,0,0,0.20);
}
.call-btn.end { background: #E5474D; }
.call-btn svg { width: 18px; height: 18px; stroke-width: 2; fill: none; }
.call-btn.end svg { stroke: white; }
.call-btn:not(.end) svg { stroke: var(--c-ink); }

/* ============ CTA BAND ============ */
.cta-band { padding: clamp(56px, 7vw, 80px) 0; position: relative; overflow: hidden; }
.cta-band-inner {
  background:
    radial-gradient(600px 320px at 100% 0%, rgba(247,123,38,0.22), transparent 70%),
    linear-gradient(135deg, var(--c-bronze) 0%, var(--c-bronze-dark) 100%);
  border-radius: var(--radius-lg);
  padding: clamp(40px, 5vw, 60px) clamp(28px, 5vw, 60px);
  color: white;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-bronze);
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  color: white;
  font-size: clamp(1.7rem, 2.8vw, 2.4rem);
  margin-bottom: 12px;
}
.cta-band h2 em { font-family: 'Playfair Display', Georgia, serif; font-style: italic; font-weight: 500; color: #FFE9CC; }
.cta-band p { color: rgba(255,255,255,0.88); font-size: 1.02rem; max-width: 30em; }
.cta-band-actions { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; position: relative; }
.cta-band-actions .btn { width: 100%; }
.cta-phone {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  display: flex; align-items: center; gap: 8px;
}
.cta-phone svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }

/* ============ CONSULTORIO ============ */
.practice {
  padding: clamp(64px, 8vw, 92px) 0;
  background: var(--c-bronze-soft-2);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.practice-head { text-align: center; margin-bottom: 48px; }
.practice-head h2 { margin-top: 16px; }
.practice-head p { max-width: 35em; margin: 14px auto 0; font-size: 1.02rem; }

.practice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.practice-card {
  background: rgba(255,255,255,0.75);
  border-radius: var(--radius);
  padding: 34px 32px;
  border: 1px solid var(--c-line);
}
.practice-card h3 {
  font-size: 1.2rem;
  color: var(--c-ink);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 10px;
}
.practice-card h3 svg { width: 22px; height: 22px; stroke: var(--c-bronze); fill: none; stroke-width: 2; }

.practice-list { list-style: none; display: flex; flex-direction: column; gap: 16px; }
.practice-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.96rem;
  color: var(--c-ink-soft);
  line-height: 1.55;
}
.practice-list li svg {
  width: 20px; height: 20px;
  stroke: var(--c-bronze);
  fill: none;
  stroke-width: 2;
  margin-top: 2px;
}
.practice-list li strong {
  color: var(--c-bronze-dark);
  display: block;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 2px;
  font-weight: 700;
}

.credentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.cred-item {
  background: white;
  border-radius: 12px;
  padding: 15px 17px;
  border: 1px solid var(--c-bronze-tint);
}
.cred-item dt {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-bronze-dark);
  font-weight: 700;
  margin-bottom: 4px;
}
.cred-item dd {
  font-size: 1.02rem;
  color: var(--c-ink);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
}

.practice-disclaimer {
  margin-top: 28px;
  padding: 18px 22px;
  background: var(--c-bronze-soft);
  border: 1px solid var(--c-bronze-tint);
  border-radius: 12px;
  font-size: 0.86rem;
  color: var(--c-bronze-deep);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .practice-grid { grid-template-columns: 1fr; }
  .credentials-grid { grid-template-columns: 1fr; }
}

/* ============ ECOSYSTEM ============ */
.ecosystem {
  padding: clamp(76px, 9vw, 110px) 0;
  background: var(--c-bg);
  position: relative;
  overflow: hidden;
}
.ecosystem-head { text-align: center; margin-bottom: clamp(44px, 6vw, 64px); }
.ecosystem-head h2 { margin-top: 16px; }
.ecosystem-head p { max-width: 36em; margin: 16px auto 0; font-size: 1.05rem; }

.ecosystem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.eco-card {
  position: relative;
  padding: 40px 38px 38px;
  border-radius: var(--radius-lg);
  background: var(--c-cream);
  border: 1px solid var(--c-line);
  overflow: hidden;
  transition: transform .35s var(--ease-out), box-shadow .35s ease, border-color .35s ease;
}
.eco-card-app { background: var(--c-bronze-soft-2); border-color: var(--c-bronze-tint); }
.eco-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(139,94,43,0.35);
}

.eco-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-bronze);
  margin-bottom: 24px;
}
.eco-tag::after {
  content: '';
  width: 34px; height: 1px;
  background: var(--c-bronze);
  opacity: 0.4;
  align-self: center;
}

.eco-icon {
  width: 64px; height: 64px;
  border-radius: 999px 999px 16px 16px;
  display: grid; place-items: center;
  margin-bottom: 24px;
  background: var(--c-bronze);
  box-shadow: 0 12px 30px rgba(139,94,43,0.30);
  transition: transform .35s var(--ease-out);
}
.eco-card-app .eco-icon {
  background: var(--c-orange);
  box-shadow: 0 12px 30px rgba(247,123,38,0.30);
}
.eco-card:hover .eco-icon { transform: rotate(-5deg) scale(1.05); }
.eco-icon svg { width: 30px; height: 30px; stroke: white; fill: none; stroke-width: 1.8; }

.eco-card h3 {
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--c-ink);
}
.eco-members {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--c-bronze-dark);
  margin-bottom: 16px;
}
.eco-members::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #22C55E;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.22);
}
.eco-card .eco-lede {
  color: var(--c-ink-soft);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.eco-list {
  list-style: none;
  display: flex; flex-direction: column;
  gap: 11px;
  margin-bottom: 30px;
}
.eco-list li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--c-ink-soft);
  line-height: 1.55;
}
.eco-list li::before {
  content: '';
  width: 18px; height: 18px;
  border-radius: 50%;
  background-color: var(--c-bronze-soft);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238B5E2B' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-size: 12px 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 3px;
  flex-shrink: 0;
}
.eco-card .btn { width: 100%; }

@media (max-width: 900px) {
  .ecosystem-grid { grid-template-columns: 1fr; gap: 20px; }
  .eco-card { padding: 32px 26px 30px; }
}

/* ============ FAQ ============ */
.faq { padding: clamp(72px, 9vw, 104px) 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
.faq-title {
  color: var(--c-ink);
  font-size: clamp(2.1rem, 4vw, 2.9rem);
  font-weight: 800;
  margin-top: 16px;
  margin-bottom: 30px;
}
.faq-title em {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-weight: 500;
  color: var(--c-bronze);
}
.faq-callout {
  background: var(--c-bronze-soft);
  border-radius: var(--radius);
  padding: 36px 32px;
  position: relative;
  overflow: hidden;
}
.faq-callout h3 { font-size: 1.4rem; color: var(--c-ink); margin-bottom: 8px; position: relative; }
.faq-callout p { color: var(--c-ink-soft); margin-bottom: 22px; position: relative; }

.faq-list {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--c-line);
  overflow: hidden;
}
details { border-bottom: 1px solid var(--c-line); }
details:last-child { border-bottom: none; }
details summary {
  padding: 22px 26px;
  cursor: pointer;
  list-style: none;
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--c-ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: background .15s ease, color .15s ease;
}
details summary::-webkit-details-marker { display: none; }
details summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--c-bronze);
  font-weight: 400;
  transition: transform .25s var(--ease-out);
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--c-bronze-soft);
}
details[open] summary::after { transform: rotate(45deg); }
details summary:hover { background: var(--c-bronze-soft-2); color: var(--c-bronze-dark); }
details .faq-answer {
  padding: 0 26px 22px;
  color: var(--c-muted);
  font-size: 0.97rem;
  line-height: 1.65;
  max-width: 60em;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.78);
  padding: 64px 0 30px;
  font-size: 0.92rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-bronze) 0%, var(--c-orange) 50%, var(--c-bronze) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}
.footer h4 {
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer a {
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  display: block;
  padding: 4px 0;
  transition: color .15s ease;
}
.footer a:hover { color: white; }
.footer-brand p { color: rgba(255,255,255,0.6); max-width: 24em; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
}

/* ============ WHATSAPP FLOTANTE ============ */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #25D366;
  color: white;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 14px 34px rgba(37,211,102,0.45);
  z-index: 100;
  transition: transform .2s ease;
}
.wa-float::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.45);
  animation: waPulse 2.4s infinite;
}
@keyframes waPulse {
  0% { transform: scale(0.85); opacity: 0.9; }
  80%, 100% { transform: scale(1.30); opacity: 0; }
}
.wa-float:hover { transform: scale(1.06); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ============ RESPONSIVE ============ */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-img-wrap { max-width: 400px; margin: 0 auto; justify-self: center; }
  .hero-proof { position: static; transform: none; margin: 22px auto 0; max-width: 100%; justify-content: center; }
  .anim-proof { animation-delay: 0.6s; }

  .stats-head { margin-bottom: 40px; }
  .stats-grid { grid-template-columns: 1fr; gap: 0; }
  .stat {
    border-left: none;
    padding: 24px 0;
    border-top: 1px solid rgba(255,255,255,0.18);
  }
  .stat:first-child { border-top: none; padding-top: 0; }

  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-img-wrap { max-width: 380px; margin: 0 auto; }

  .steps-grid { grid-template-columns: 1fr; gap: 50px; }

  .cta-band-inner { grid-template-columns: 1fr; gap: 30px; }

  .faq-grid { grid-template-columns: 1fr; gap: 32px; }

  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
@media (max-width: 540px) {
  .step { grid-template-columns: 64px 1fr; padding: 22px 10px 22px 4px; }
  .step-no { font-size: 2rem; }
  .cta-row { gap: 16px; }
  .cta-row .btn { width: 100%; }
  .specialties-row { padding: 0 8px; }
  .specialty { font-size: 0.98rem; }
  .hero-trust { gap: 12px; flex-direction: column; align-items: flex-start; }
  .hero-proof { flex-direction: column; gap: 6px; text-align: center; padding: 16px 22px; border-radius: 18px; }
}
