:root {
  --bg: #050a17;
  --bg-alt: #070d1e;
  --card: #0c1730;
  --card-border: #1b2a4d;
  --blue-deep: #0b2a6b;
  --blue: #2f6feb;
  --blue-bright: #5b9dff;
  --blue-glow: #3b82f6;
  --text: #eaf0fb;
  --text-muted: #93a1c2;
  --text-faint: #5f6d8e;
  --wa: #25d366;
  --wa-dark: #128c7e;
  --radius: 16px;
  --font-head: "Sora", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(924px 520px at 50% 0, rgba(47, 111, 235, 0.35) 0%, rgba(5, 10, 23, 0) 70%),
    radial-gradient(601px 370px at 85% 160px, rgba(91, 157, 255, 0.18) 0%, rgba(5, 10, 23, 0) 70%),
    var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 16px;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-align: center;
  color: var(--text);
}

p {
  margin: 0 0 16px;
  color: var(--text-muted);
}

/* Nav — flotante, con puntas redondeadas */
.nav {
  position: sticky;
  top: 14px;
  z-index: 50;
  width: calc(100% - 32px);
  max-width: 1100px;
  margin: 14px auto 0;
  border-radius: 999px;
  background: rgba(5, 10, 23, 0.65);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px -18px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(91, 157, 255, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 10px 0 26px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.14rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.brand-name,
.brand-name-accent {
  line-height: 1;
}

.brand-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  flex-shrink: 0;
  transform: translate(2px, -2px);
}

.brand-logo {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.18) saturate(1.1) drop-shadow(0 0 6px rgba(59, 130, 246, 0.5));
}

/* Nombre — brillo/reflejo que recorre el texto una vez al cargar la página */
.brand-name,
.brand-name-accent {
  background-size: 250% 100%;
  background-position: -60% 0;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: brand-shine 2.4s ease-in-out 0.4s 1 both;
}

.brand-name {
  background-image: linear-gradient(100deg, #c3d2ef 0%, #c3d2ef 40%, #ffffff 50%, #c3d2ef 60%, #c3d2ef 100%);
}

.brand-name-accent {
  background-image: linear-gradient(100deg, var(--blue-bright) 0%, var(--blue-bright) 40%, #ffffff 50%, var(--blue-bright) 60%, var(--blue-bright) 100%);
}

@keyframes brand-shine {
  0% {
    background-position: -60% 0;
  }
  100% {
    background-position: 160% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-name,
  .brand-name-accent {
    animation: none;
    background-position: 0 0;
  }
}

/* Buttons — verde WhatsApp */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-head);
  border-radius: 999px;
  padding: 14px 28px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  fill: currentColor;
}

.btn-primary {
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-dark) 100%);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.3), 0 14px 38px -8px rgba(18, 140, 126, 0.65);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.45), 0 18px 46px -6px rgba(18, 140, 126, 0.85);
}

/* Agendar reunión — azul, acción principal */
.btn-book {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-deep) 100%);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(91, 157, 255, 0.3), 0 14px 38px -8px rgba(59, 130, 246, 0.6);
}

.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(91, 157, 255, 0.45), 0 18px 46px -6px rgba(59, 130, 246, 0.8);
}

.btn-nav-book {
  gap: 8px;
  padding: 9px 18px;
  font-size: 0.79rem;
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-deep) 100%);
  color: #fff;
  box-shadow: 0 0 0 1px rgba(91, 157, 255, 0.3), 0 8px 24px -8px rgba(59, 130, 246, 0.6);
}

.btn-nav-book .btn-icon {
  width: 14px;
  height: 14px;
}

.btn-nav-book:hover {
  box-shadow: 0 0 0 1px rgba(91, 157, 255, 0.45), 0 10px 28px -6px rgba(59, 130, 246, 0.8);
}

/* Hablar por WhatsApp — verde, acción secundaria */
.btn-secondary {
  background: rgba(37, 211, 102, 0.12);
  color: #4ade80;
  border: 1px solid rgba(37, 211, 102, 0.4);
}

.btn-secondary:hover {
  background: rgba(37, 211, 102, 0.2);
  border-color: var(--wa);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

/* Hero */
.hero {
  position: relative;
  padding: 40px 0 44px;
  overflow: hidden;
}

.hero-inner {
  text-align: center;
  max-width: 800px;
}

.eyebrow {
  display: inline-block;
  color: var(--blue-bright);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  background: rgba(47, 111, 235, 0.08);
  margin-bottom: 28px;
}

.hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  letter-spacing: -0.01em;
}

.hero h1 .accent {
  color: var(--blue-bright);
}

.hero-sub {
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 40px;
}

/* VSL — video embebido, con marco de degradé y halo detrás */
.vsl {
  position: relative;
  max-width: 720px;
  margin: 0 auto 44px;
  padding: 1.5px;
  border-radius: 21px;
  background: linear-gradient(135deg, rgba(91, 157, 255, 0.7), rgba(47, 111, 235, 0.2) 50%, rgba(91, 157, 255, 0.6));
}

.vsl::before {
  content: "";
  position: absolute;
  inset: -60px;
  background: radial-gradient(closest-side, rgba(59, 130, 246, 0.68), rgba(59, 130, 246, 0) 75%);
  filter: blur(34px);
  pointer-events: none;
}

.vsl-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: linear-gradient(160deg, var(--card) 0%, var(--bg-alt) 100%);
  box-shadow: 0 30px 65px -20px rgba(59, 130, 246, 0.5);
}

.vsl-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-note {
  color: var(--text-faint);
  font-size: 0.85rem;
  margin: 0;
}

/* Sections shared */
section {
  padding: 104px 0;
}

.section-sub {
  text-align: center;
  max-width: 560px;
  margin: -6px auto 48px;
}

.section-eyebrow {
  text-align: center;
  color: var(--blue-bright);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 10px;
}

/* Chips de pasos en el hero */
.step-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 0 0 38px;
}

.step-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 20px 9px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(12, 23, 48, 0.85);
  color: var(--text);
  font-family: var(--font-head);
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.step-chip:hover {
  transform: translateY(-2px);
  border-color: rgba(91, 157, 255, 0.55);
  box-shadow: 0 0 26px rgba(59, 130, 246, 0.4);
}

.step-chip strong {
  font-weight: 700;
  color: #fff;
}

.step-chip-pre {
  color: #93a1c2;
  font-weight: 500;
}

.step-chip-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue));
  color: #06101f;
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 0 18px rgba(91, 157, 255, 0.55);
}

.step-chip-icon {
  width: 13px;
  height: 13px;
  fill: var(--blue-bright);
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Problema */
.problema {
  padding-top: 40px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 26px 26px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(251, 146, 60, 0.4);
  box-shadow: 0 22px 44px -18px rgba(251, 146, 60, 0.35);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(160deg, rgba(91, 157, 255, 0.35), transparent 40%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card-index {
  position: absolute;
  top: -6px;
  right: 12px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 3.2rem;
  color: var(--card-border);
  opacity: 0.6;
  line-height: 1;
  pointer-events: none;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 16px;
  background: rgba(251, 146, 60, 0.12);
  border: 1px solid rgba(251, 146, 60, 0.35);
  box-shadow: 0 0 20px rgba(251, 146, 60, 0.25);
}

.card-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #fb923c;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card p {
  color: var(--text);
  margin: 0;
  font-size: 0.98rem;
}

/* Divisor de sección con gradiente celeste */
.section-divider {
  position: relative;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(720px, 80%);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 157, 255, 0.4), transparent);
}

/* Sistema / pasos */
.sistema {
  background: var(--bg-alt);
}

.pasos {
  display: grid;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto;
}

.paso {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.paso:hover {
  transform: translateY(-3px);
  border-color: rgba(91, 157, 255, 0.45);
  box-shadow: 0 18px 40px -18px rgba(59, 130, 246, 0.5);
}

.paso:hover .paso-num {
  box-shadow: 0 0 34px rgba(59, 130, 246, 0.85);
}

.paso-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-deep));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  box-shadow: 0 0 24px rgba(59, 130, 246, 0.55);
  transition: box-shadow 0.2s ease;
}

.paso h3 {
  margin: 0 0 6px;
  font-size: 1.05rem;
}

.paso p {
  margin: 0;
  font-size: 0.95rem;
}

/* Para quién */
.quien-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}

.quien-col {
  background: var(--card);
  border-radius: var(--radius);
  padding: 30px;
  border: 1px solid var(--card-border);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.quien-col:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 157, 255, 0.55);
  box-shadow: 0 22px 46px -16px rgba(59, 130, 246, 0.55);
}

.quien-si {
  border-color: rgba(91, 157, 255, 0.45);
  box-shadow: 0 0 40px -12px rgba(59, 130, 246, 0.5);
}

.quien-col h3 {
  font-size: 1.1rem;
  margin-bottom: 18px;
}

.quien-si h3 {
  color: var(--blue-bright);
}

.quien-no h3 {
  color: var(--text-faint);
}

.quien-col ul {
  margin: 0;
  padding-left: 20px;
  color: var(--text-muted);
}

.quien-col li {
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.quien-si li {
  color: var(--text);
}

.para-quien-nota {
  text-align: center;
  color: var(--text-faint);
  font-size: 0.85rem;
  margin: 32px 0 0;
}

/* Tramos de volumen */
.tramos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 720px;
  margin: 40px auto 0;
}

.tramo-card {
  background: var(--bg-alt);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 26px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.tramo-card:hover {
  transform: translateY(-4px);
  border-color: rgba(91, 157, 255, 0.55);
  box-shadow: 0 22px 46px -16px rgba(59, 130, 246, 0.55);
}

.tramo-card--destacado {
  border-color: rgba(91, 157, 255, 0.5);
  box-shadow: 0 0 36px -10px rgba(59, 130, 246, 0.55);
}

.tramo-label {
  color: var(--text-muted);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
}

.tramo-volumen {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--blue-bright);
  margin: 0 0 10px;
}

.tramo-volumen span {
  font-size: 0.9rem;
  color: var(--text-faint);
  font-weight: 500;
  margin-left: 4px;
}

.tramo-desc {
  color: var(--text);
  font-size: 0.9rem;
  margin: 0;
}

/* Comparativa — marco con degradé de borde, tabla perfectamente simétrica */
.comparativa-table {
  max-width: 680px;
  margin: 40px auto 0;
  padding: 2px;
  border-radius: calc(var(--radius) + 2px);
  background: linear-gradient(135deg, rgba(91, 157, 255, 0.55), rgba(47, 111, 235, 0.15) 45%, rgba(91, 157, 255, 0.4));
  box-shadow: 0 30px 65px -22px rgba(59, 130, 246, 0.5), 0 0 50px -16px rgba(59, 130, 246, 0.3);
}

.comparativa-table table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}

.comparativa-table th,
.comparativa-table td {
  width: 50%;
  padding: 18px 20px;
  text-align: center;
  font-size: 0.95rem;
  vertical-align: middle;
}

.comparativa-table thead th {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--card-border);
}

.comparativa-table thead th:first-child {
  color: var(--text-faint);
}

.comparativa-table thead th:last-child {
  color: var(--blue-bright);
  text-shadow: 0 0 18px rgba(59, 130, 246, 0.5);
}

.comparativa-table tbody tr {
  transition: background 0.2s ease;
}

.comparativa-table tbody tr:hover {
  background: rgba(47, 111, 235, 0.06);
}

.comparativa-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid var(--card-border);
}

.comparativa-table td:not(:last-child) {
  border-right: 1px solid var(--card-border);
}

.comparativa-table tbody td:first-child {
  color: var(--text-muted);
}

.comparativa-table tbody td:last-child {
  color: var(--text);
  font-weight: 600;
  background: rgba(47, 111, 235, 0.07);
}

.comparativa-icon {
  display: inline-block;
  vertical-align: -5px;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.comparativa-icon--no {
  stroke: #fb923c;
  opacity: 0.85;
}

.comparativa-icon--si {
  stroke: var(--blue-bright);
  filter: drop-shadow(0 0 4px rgba(59, 130, 246, 0.6));
}

/* Para quién es — retroiluminada */
.para-quien {
  background:
    radial-gradient(50% 55% at 50% 100%, rgba(47, 111, 235, 0.14) 0%, rgba(5, 10, 23, 0) 70%);
}

/* Quién te atiende */
.quien-atiende {
  background: var(--bg-alt);
}

.quien-atiende-inner {
  max-width: 780px;
  display: flex;
  align-items: center;
  gap: 40px;
  text-align: left;
}

.quien-foto {
  flex-shrink: 0;
  width: 221px;
  height: 221px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 15%;
  border: 3px solid var(--card-border);
  box-shadow: 0 0 0 1px rgba(91, 157, 255, 0.25), 0 20px 45px -16px rgba(59, 130, 246, 0.5);
}

.quien-atiende-text h2 {
  text-align: left;
  margin-bottom: 12px;
}

.quien-atiende-text p {
  margin: 0 0 16px;
}

.quien-atiende-text p:last-child {
  margin-bottom: 0;
}

/* FAQ */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: 12px;
  padding: 18px 22px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover,
.faq-item[open] {
  border-color: rgba(91, 157, 255, 0.45);
  box-shadow: 0 12px 30px -16px rgba(59, 130, 246, 0.45);
}

.faq-item summary {
  cursor: pointer;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--blue-bright);
  font-size: 1.3rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 14px 0 0;
  font-size: 0.95rem;
}

/* CTA final */
.cta-final {
  text-align: center;
  background:
    radial-gradient(50% 80% at 50% 100%, rgba(47, 111, 235, 0.3) 0%, rgba(5, 10, 23, 0) 70%);
}

.cta-final h2 {
  margin-bottom: 12px;
}

.cta-final p {
  max-width: 480px;
  margin: 0 auto 32px;
}

/* Agenda + Problema — un solo fondo pintado detrás de las dos secciones, sin costura */
.glow-band {
  position: relative;
  background:
    radial-gradient(78% 54% at 50% 6%, rgba(47, 111, 235, 0.45) 0%, rgba(47, 111, 235, 0.2) 35%, rgba(47, 111, 235, 0.08) 60%, rgba(5, 10, 23, 0) 85%),
    var(--bg);
}

.agenda {
  position: relative;
  padding-top: 64px;
  scroll-margin-top: 50px;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: -12px 0 32px;
}

.trust-chip {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-bright);
  padding: 7px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 23, 48, 0.7);
}

.agenda-widget {
  max-width: 600px;
  min-height: 392px;
  margin: 0 auto;
  padding: 6px;
  border-radius: calc(var(--radius) + 6px);
  background: linear-gradient(160deg, rgba(91, 157, 255, 0.5), rgba(47, 111, 235, 0.1) 60%, rgba(91, 157, 255, 0.35));
  box-shadow: 0 30px 70px -24px rgba(59, 130, 246, 0.55), 0 0 60px -18px rgba(59, 130, 246, 0.35);
}

.calendly-inline-widget {
  max-width: 100%;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
}

.calendly-inline-widget iframe {
  border-radius: var(--radius);
  display: block;
}

.agenda-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 520px;
  margin: 32px auto 20px;
  color: var(--text-faint);
  font-size: 0.85rem;
  white-space: nowrap;
}

.agenda-divider::before,
.agenda-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91, 157, 255, 0.35), transparent);
}

.agenda-wa {
  text-align: center;
}

/* Footer */
.footer {
  border-top: 1px solid var(--card-border);
  padding: 36px 0;
}

.footer-inner {
  text-align: center;
}

.footer-inner p {
  margin: 0 0 8px;
  font-size: 0.85rem;
}

.footer-aviso {
  color: var(--text-faint);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 22px;
  margin: 4px 0 18px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 0.85rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--blue-bright);
}

.footer-links svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

/* WhatsApp flotante */
.wa-float {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--wa) 0%, var(--wa-dark) 100%);
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.3), 0 12px 30px -6px rgba(18, 140, 126, 0.7);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float svg {
  width: 24px;
  height: 24px;
  fill: #fff;
}

.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 0 0 1px rgba(37, 211, 102, 0.5), 0 16px 38px -4px rgba(18, 140, 126, 0.9);
}

/* Responsive */
@media (max-width: 640px) {
  .hero {
    padding: 24px 0 32px;
  }

  section {
    padding: 68px 0;
  }

  .nav-inner {
    height: 64px;
  }

  .brand {
    gap: 7px;
    font-size: 0.95rem;
  }

  .brand-badge {
    width: 25px;
    height: 25px;
  }

  .btn-nav-book {
    padding: 7px 12px;
    font-size: 0.7rem;
  }

  .hero-cta-row {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  .quien-atiende-inner {
    flex-direction: column;
    text-align: center;
  }

  .quien-atiende-text h2 {
    text-align: center;
  }
}
