/* =============================================================
   1. Tokens — estrictamente negro / blanco / fucsia
   ============================================================= */
:root {
  --black:        #1B1A1F;
  --white:        #FFFFFF;
  --fuchsia:      #F60963;

  --bg:           var(--black);
  --surface:      rgba(255,255,255,0.045);
  --surface-hi:   rgba(255,255,255,0.08);
  --border:       rgba(255,255,255,0.10);
  --border-hi:    rgba(255,255,255,0.18);

  --ink:          var(--white);
  --ink-mute:     rgba(255,255,255,0.66);
  --ink-faint:    rgba(255,255,255,0.40);

  --fuchsia-glow: rgba(246,9,99,0.35);
  --fuchsia-soft: rgba(246,9,99,0.14);
  --fuchsia-line: rgba(246,9,99,0.5);
  --shadow-black: rgba(0,0,0,0.5);

  --radius-lg:    28px;
  --radius:       22px;
  --radius-sm:    16px;
  --radius-pill:  999px;

  --display: "Lato", "Arial", ui-sans-serif, sans-serif;
  --sans:    "Montserrat", "Arial", ui-sans-serif, sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --container: 1240px;
}

/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; overflow-x: clip; scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--display); font-weight: 900; }
::selection { background: var(--fuchsia); color: var(--white); }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--white); color: var(--black);
  z-index: 9999; border-radius: 10px; font-weight: 600;
  transition: top .2s var(--ease-out);
}
.skip-link:focus { top: 1rem; }

.eyebrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--fuchsia);
  margin-bottom: .9rem;
}

.section-head { max-width: 640px; margin: 0 auto 3.4rem; text-align: center; }
.section-title { font-size: clamp(1.9rem, 4vw, 2.9rem); }
.section-sub { margin-top: 1rem; color: var(--ink-mute); font-size: 1.05rem; }

.dot-sep { color: var(--ink-faint); }

section[id] { scroll-margin-top: 90px; }

/* =============================================================
   4. Buttons
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: .9rem 1.7rem;
  border-radius: var(--radius-pill);
  font-size: .95rem;
  font-weight: 700;
  font-family: var(--sans);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), background .3s var(--ease-out), border-color .3s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: var(--fuchsia);
  color: var(--white);
  box-shadow: 0 12px 32px -8px var(--fuchsia-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -6px var(--fuchsia-glow); }
.btn-ghost {
  background: var(--surface);
  border: 1px solid var(--border-hi);
  color: var(--ink);
  backdrop-filter: blur(12px);
}
.btn-ghost:hover { background: var(--surface-hi); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1rem; }
.btn-xl { padding: 1.3rem 2.6rem; font-size: 1.05rem; box-shadow: 0 16px 40px -8px var(--fuchsia-glow); }
.btn-xl:hover { box-shadow: 0 22px 50px -8px var(--fuchsia-glow); }

/* =============================================================
   5. Glass card base
   ============================================================= */
.glass-card, .contact-panel, .mock, .testi-card {
  background: rgba(255,255,255,0.7); /* solid fallback */
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  box-shadow: 0 30px 80px -20px var(--shadow-black);
}
@supports not (backdrop-filter: blur(1px)) {
  .glass-card, .contact-panel, .mock, .testi-card { background: #221f26; }
}

/* =============================================================
   6. Nav
   ============================================================= */
.nav {
  position: sticky; top: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  background: rgba(27,26,31,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-logo img { height: 30px; width: auto; display: block; }
.nav-links { display: none; gap: 2.2rem; }
.nav-links a {
  font-size: .9rem; font-weight: 600;
  color: var(--ink-mute);
  position: relative; padding-bottom: 3px;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px; background: var(--fuchsia);
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta { display: none; }
.nav-burger {
  display: flex; flex-direction: column; gap: 5px;
  padding: .5rem;
}
.nav-burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s var(--ease-out), opacity .3s var(--ease-out); }
.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); }

.nav-mobile {
  position: fixed; inset: 0 0 auto 0; top: 66px; z-index: 90;
  display: flex; flex-direction: column; gap: 0;
  background: rgba(27,26,31,0.98);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.nav-mobile.is-open { opacity: 1; transform: none; pointer-events: auto; }
.nav-mobile a {
  padding: 1.1rem clamp(1.2rem, 4vw, 3rem);
  font-weight: 600; font-size: 1.05rem;
  border-bottom: 1px solid var(--border);
}
.nav-mobile-cta { color: var(--fuchsia) !important; }

@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-cta {
    display: inline-flex; align-items: center;
    padding: .7rem 1.4rem;
    border-radius: var(--radius-pill);
    background: var(--fuchsia);
    color: var(--white);
    font-size: .88rem; font-weight: 700;
    transition: transform .3s var(--ease-out);
  }
  .nav-cta:hover { transform: translateY(-2px); }
  .nav-burger, .nav-mobile { display: none; }
}

/* =============================================================
   7. Hero
   ============================================================= */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) clamp(1.2rem, 4vw, 3rem) clamp(4rem, 8vw, 6rem);
  overflow: clip;
}
.hero-glow {
  position: absolute; inset: -10% -10% auto -10%; height: 120%; z-index: -1;
  background: radial-gradient(560px circle at var(--mx, 78%) var(--my, 22%), var(--fuchsia-glow), transparent 62%);
  filter: blur(10px);
  opacity: .8;
  transition: background .4s linear;
}
.hero-grid {
  max-width: var(--container);
  margin-inline: auto;
  display: grid;
  gap: 3rem;
  align-items: center;
}
.kicker {
  display: inline-flex; align-items: center; gap: .55rem;
  font-size: .85rem; font-weight: 600; color: var(--ink-mute);
  margin-bottom: 1.6rem;
}
.kicker-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--fuchsia); box-shadow: 0 0 0 4px var(--fuchsia-soft); }

.hero-title {
  font-size: clamp(2.3rem, 6vw, 3.6rem);
  line-height: 1.05;
  max-width: 16ch;
}
.hero-title em { font-style: normal; color: var(--fuchsia); }

.hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--ink-mute);
  max-width: 46ch;
}

.hero-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: .9rem; }

.hero-trust {
  margin-top: 2rem;
  display: flex; flex-wrap: wrap; gap: .5rem;
  font-size: .84rem; color: var(--ink-faint);
}

.live-viewers {
  margin-top: 1.1rem;
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .5rem .9rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  font-size: .82rem; font-weight: 600; color: var(--ink-mute);
}
.live-viewers-dot {
  width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0;
  background: #3EDC81;
  box-shadow: 0 0 0 4px rgba(62,220,129,.18);
  animation: liveDotPulse 2s ease-in-out infinite;
}
@keyframes liveDotPulse { 0%, 100% { opacity: 1; } 50% { opacity: .45; } }
.live-viewers strong { color: var(--ink); font-weight: 800; }

/* ----- Hero dashboard mockup ----- */
.hero-visual { position: relative; }
.mock {
  padding: 1.1rem 1.1rem 1.3rem;
  transform: perspective(1400px) rotateY(-6deg) rotateX(3deg);
  transform-style: preserve-3d;
  animation: mockFloat 7s ease-in-out infinite;
}
@keyframes mockFloat {
  0%, 100% { transform: perspective(1400px) rotateY(-6deg) rotateX(3deg) translateY(0); }
  50%      { transform: perspective(1400px) rotateY(-6deg) rotateX(3deg) translateY(-14px); }
}
.mock-topbar { display: flex; align-items: center; gap: .4rem; padding: .2rem .3rem .9rem; }
.mock-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--border-hi); }
.mock-url {
  margin-left: .7rem;
  font-size: .74rem; color: var(--ink-faint);
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  padding: .25rem .7rem; border-radius: var(--radius-pill);
}
.mock-tabs { display: flex; gap: .5rem; padding: 0 .3rem .9rem; }
.mock-tab {
  font-size: .78rem; font-weight: 600; color: var(--ink-faint);
  padding: .4rem .85rem; border-radius: var(--radius-pill);
  border: 1px solid transparent;
}
.mock-tab.is-active { color: var(--white); background: var(--fuchsia-soft); border-color: var(--fuchsia-line); }

.mock-body {
  background: rgba(0,0,0,0.22);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 1.2rem;
}
.mock-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: .7rem; margin-bottom: 1.2rem; }
.mock-kpi {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: .7rem .5rem;
  text-align: center;
}
.mock-kpi-label { font-size: .68rem; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .06em; }
.mock-kpi-value { margin-top: .2rem; font-family: var(--display); font-weight: 900; font-size: 1.3rem; color: var(--fuchsia); }

.mock-chart {
  display: flex; align-items: flex-end; gap: .5rem;
  height: 90px;
  margin-bottom: .8rem;
}
.mock-chart span {
  flex: 1;
  height: var(--h);
  background: linear-gradient(180deg, var(--fuchsia), rgba(246,9,99,0.35));
  border-radius: 6px 6px 2px 2px;
}
.mock-line { width: 100%; height: 44px; overflow: visible; }
.mock-line polyline { fill: none; stroke: var(--white); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: .5; }

.mock-caption { margin-top: .9rem; text-align: center; font-size: .72rem; color: var(--ink-faint); }

.hero-badge {
  position: absolute; left: -14px; bottom: -18px;
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(27,26,31,0.92);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius-pill);
  padding: .7rem 1.1rem;
  font-size: .8rem; font-weight: 600;
  box-shadow: 0 20px 50px -12px var(--shadow-black);
  backdrop-filter: blur(14px);
}
.hero-badge-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--fuchsia); box-shadow: 0 0 0 4px var(--fuchsia-soft); animation: pulseDot 2.4s ease-in-out infinite; }
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }

@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.05fr .95fr; }
  .hero-badge { left: -24px; bottom: -22px; }
}

/* =============================================================
   7.5 Showcase band
   ============================================================= */
.showcase {
  position: relative;
  height: clamp(220px, 32vw, 380px);
  overflow: clip;
  display: flex; align-items: center; justify-content: center;
}
.showcase-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(.85) contrast(1.05);
}
.showcase-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(0deg, var(--black) 0%, rgba(27,26,31,0.35) 35%, rgba(27,26,31,0.55) 100%),
    linear-gradient(100deg, rgba(246,9,99,0.30), rgba(27,26,31,0.55) 60%);
}
.showcase-text {
  position: relative; z-index: 1;
  font-family: var(--display);
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  text-align: center;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

/* =============================================================
   8. Servicios
   ============================================================= */
.servicios, .proceso, .social-proof, .contact, .video-portfolio {
  padding: clamp(4rem, 8vw, 7rem) clamp(1.2rem, 4vw, 3rem);
  max-width: var(--container);
  margin-inline: auto;
}

.video-carousel { position: relative; }
.video-grid {
  display: flex;
  gap: 1.2rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: .2rem .2rem 1rem;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.video-grid::-webkit-scrollbar { display: none; }

.video-card {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 172px;
  display: flex; flex-direction: column; align-items: center;
}
@media (min-width: 640px) { .video-card { width: 300px; } }
@media (min-width: 960px) { .video-card { width: 340px; } }

.video-embed { width: 100%; overflow: hidden; }
.video-embed iframe { max-width: 100% !important; }
.video-embed .instagram-media { max-width: 100% !important; width: 100% !important; min-width: 0 !important; }
.video-caption { margin-top: .9rem; font-size: .85rem; color: var(--ink-mute); text-align: center; }

.carousel-arrow {
  display: none;
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border-hi);
  color: var(--ink); font-size: 1.3rem; line-height: 1;
  align-items: center; justify-content: center;
  z-index: 2; backdrop-filter: blur(12px);
  transition: background .3s var(--ease-out), transform .3s var(--ease-out);
}
.carousel-arrow:hover { background: var(--surface-hi); }
.carousel-arrow.prev { left: -8px; }
.carousel-arrow.next { right: -8px; }
@media (min-width: 960px) { .carousel-arrow { display: flex; } }

.cards-grid { display: grid; gap: 1.3rem; }
.glass-card {
  position: relative;
  padding: 2rem 1.7rem;
  transition: transform .4s var(--ease-out), background .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.glass-card:hover {
  transform: translateY(-6px);
  background: var(--surface-hi);
  box-shadow: 0 34px 70px -16px var(--shadow-black), 0 0 0 1px var(--fuchsia-line);
}
.glass-card-featured { border-color: var(--fuchsia-line); }

.glass-card-photo { padding: 0; overflow: clip; }
.card-photo { position: relative; aspect-ratio: 16 / 10; overflow: clip; }
.card-photo img { width: 100%; height: 100%; object-fit: cover; }
.card-photo::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(27,26,31,0) 35%, rgba(27,26,31,0.92) 100%),
    linear-gradient(0deg, rgba(246,9,99,0.22), rgba(27,26,31,0.4));
}
.card-body { padding: 1.5rem 1.7rem 2rem; }
.glass-card-photo .card-icon { margin-top: -2.9rem; position: relative; z-index: 1; background: var(--black); box-shadow: 0 0 0 6px var(--black); }

.card-badge {
  position: absolute; top: .9rem; right: .9rem; z-index: 1;
  background: var(--fuchsia); color: var(--white);
  font-size: .68rem; font-weight: 700; letter-spacing: .04em;
  padding: .35rem .8rem; border-radius: var(--radius-pill);
}
.card-icon {
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: var(--fuchsia-soft);
  color: var(--fuchsia);
  margin-bottom: 1.3rem;
}
.card-icon svg { width: 22px; height: 22px; }
.card-title { font-size: 1.2rem; margin-bottom: .6rem; }
.card-text { color: var(--ink-mute); font-size: .95rem; }
.card-price { margin-top: .7rem; color: var(--ink-faint); font-size: .8rem; font-weight: 600; }

@media (min-width: 720px) { .cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .cards-grid { grid-template-columns: repeat(4, 1fr); } }

/* =============================================================
   9. Proceso / timeline
   ============================================================= */
.timeline { position: relative; display: grid; gap: 2.2rem; }
.timeline-line { display: none; }
.timeline-item { position: relative; }
.timeline-node {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border-hi);
  font-family: var(--display); font-weight: 900; font-size: .95rem;
  color: var(--fuchsia);
  margin-bottom: 1rem;
}
.timeline-title { font-size: 1.15rem; margin-bottom: .5rem; }
.timeline-text { color: var(--ink-mute); font-size: .93rem; max-width: 34ch; }

@media (min-width: 960px) {
  .timeline { grid-template-columns: repeat(4, 1fr); gap: 1.6rem; }
  .timeline-line {
    display: block;
    position: absolute; left: 22px; right: 22px; top: 22px; height: 1px;
    background: linear-gradient(90deg, var(--border-hi), var(--border-hi));
    z-index: 0;
  }
  .timeline-line-fill {
    display: block; height: 100%; width: 0%;
    background: var(--fuchsia);
    transition: width 1.2s var(--ease-soft);
  }
  .timeline-node { position: relative; z-index: 1; background: var(--black); }
}

/* =============================================================
   10. Prueba social
   ============================================================= */
.testi-grid { display: grid; gap: 1.3rem; }
.testi-card { padding: 2rem 1.7rem; }
.testi-avatar {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1.5px dashed var(--border-hi);
  margin-bottom: 1.2rem;
  overflow: hidden;
  background: var(--surface);
}
.testi-avatar.has-img { border-style: solid; border-color: var(--border-hi); }
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-avatar-initials {
  border-style: solid; border-color: var(--fuchsia-line);
  background: var(--fuchsia-soft);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 900; font-size: .85rem;
  color: var(--fuchsia); letter-spacing: .02em;
}
.testi-avatar-hp {
  border-color: rgba(255,255,255,0.25);
  background: conic-gradient(from 180deg, #2e2e2e 0deg 180deg, #b5262c 180deg 360deg);
}
.testi-avatar-hp span:first-child { color: #f2f2f2; }
.testi-avatar-hp span:last-child { color: #ffb3b3; }
.testi-quote { font-size: .98rem; color: var(--ink-mute); font-style: italic; margin-bottom: 1.3rem; }
.testi-name { font-size: .88rem; font-weight: 700; }
.testi-result { margin-top: .3rem; font-size: .8rem; color: var(--fuchsia); }
.testi-card.is-pending { opacity: .82; }

@media (min-width: 720px) { .testi-grid { grid-template-columns: repeat(3, 1fr); } }

/* =============================================================
   11. Contacto
   ============================================================= */
.contact-panel {
  padding: clamp(2.6rem, 6vw, 4.5rem);
  text-align: center;
  position: relative;
  overflow: clip;
}
.contact-panel::before {
  content: "";
  position: absolute; inset: -60% -20% auto -20%; height: 140%;
  background: radial-gradient(480px circle at 50% 0%, var(--fuchsia-soft), transparent 70%);
  pointer-events: none;
}
.contact-title { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: 1rem; }
.contact-sub { color: var(--ink-mute); max-width: 46ch; margin-inline: auto; }
.contact-actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem; }
.contact-email { margin-top: 1.6rem; color: var(--ink-faint); font-size: .9rem; }
.contact-email a:hover { color: var(--ink); }
.cta-microcopy { margin-top: 1rem; color: var(--ink-faint); font-size: .82rem; }
.scarcity-note { margin-top: .7rem; color: var(--fuchsia); font-size: .82rem; font-weight: 600; }

/* =============================================================
   11.5 Modal asesoría
   ============================================================= */
.modal-overlay {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 1.25rem;
  background: rgba(27,26,31,0.85);
  backdrop-filter: blur(6px);
}
.modal-overlay[hidden] { display: none; }
.modal-card {
  position: relative;
  width: 100%; max-width: 420px;
  padding: 2rem;
  background: var(--black);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  box-shadow: 0 30px 80px -20px var(--shadow-black);
}
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  color: var(--ink); font-size: 1rem;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s var(--ease-out);
}
.modal-close:hover { background: var(--surface-hi); }
.modal-card h3 { font-family: var(--sans); font-weight: 800; font-size: 1.25rem; margin-bottom: .4rem; }
.modal-sub { color: var(--ink-mute); font-size: .85rem; margin-bottom: 1.5rem; }
#form-asesoria label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: 1rem; }
#form-asesoria input, #form-asesoria select {
  width: 100%; margin-top: .5rem; padding: .8rem .9rem;
  border-radius: 10px;
  border: 1px solid var(--border-hi);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--sans); font-size: .92rem;
}
#form-asesoria select { color-scheme: dark; }
#form-asesoria select option { color: #1B1A1F; background: #FFFFFF; }
#form-asesoria input:focus, #form-asesoria select:focus { outline: 2px solid var(--fuchsia); outline-offset: 2px; }
#form-asesoria .btn-block { width: 100%; margin-top: .5rem; }

.consent-label {
  display: flex; align-items: flex-start; gap: .6rem;
  font-size: .78rem; font-weight: 500; color: var(--ink-mute);
  margin-bottom: 1.25rem;
}
#form-asesoria .consent-label input[type="checkbox"] {
  width: auto; margin-top: 2px; accent-color: var(--fuchsia); flex-shrink: 0;
}
.consent-label a { color: var(--ink); text-decoration: underline; }
#submit-asesoria:disabled { opacity: .4; cursor: not-allowed; }

/* =============================================================
   12. Footer
   ============================================================= */
.footer {
  padding: 2.6rem clamp(1.2rem, 4vw, 3rem) 3rem;
  max-width: var(--container);
  margin-inline: auto;
  border-top: 1px solid var(--border);
}
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1.6rem; }
.footer-logo img { height: 24px; opacity: .9; }
.footer-social { display: flex; gap: .7rem; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--ink-mute);
  transition: color .3s var(--ease-out), border-color .3s var(--ease-out), transform .3s var(--ease-out);
}
.footer-social a:hover { color: var(--fuchsia); border-color: var(--fuchsia-line); transform: translateY(-2px); }
.footer-social svg { width: 17px; height: 17px; }

.footer-bottom {
  display: flex; flex-direction: column; gap: .8rem;
  font-size: .82rem; color: var(--ink-faint);
  padding-top: 1.6rem; border-top: 1px solid var(--border);
}
.footer-legal { display: flex; gap: 1.4rem; }
.footer-legal a { color: var(--ink-faint); transition: color .3s var(--ease-out); }
.footer-legal a:hover { color: var(--ink); }

@media (min-width: 720px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

/* =============================================================
   13. Reveal
   ============================================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
[data-reveal].is-revealed { opacity: 1; transform: none; }

/* =============================================================
   14. Breakpoints reference
   ============================================================= */
@media (min-width: 540px)  { /* large phone */ }
@media (min-width: 1600px) { /* large desktop */ }
