/* ==========================================================================
   TV StarMedia — Estilos globales (mobile first)
   Paleta premium: negro profundo, dorado y morado del logo oficial
   ========================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap");

:root {
  --bg-deep: #0b0b0d;
  --bg: #17181d;
  --surface: #23252a;
  --surface-2: #2a2d33;
  --border: rgba(255, 255, 255, 0.08);
  --border-hover: rgba(247, 162, 27, 0.28);
  --text: #f5f5f5;
  --muted: #a1a1aa;
  --gold: #f7a21b;
  --gold-light: #ffc947;
  --purple: #8a2eff;
  --purple-dark: #5a16c8;
  --gradient: linear-gradient(135deg, #f7a21b 0%, #ff7b00 45%, #8a2eff 100%);
  --gradient-soft: linear-gradient(135deg, rgba(247, 162, 27, 0.14), rgba(138, 46, 255, 0.1));
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.32);
  --radius: 20px;
  --radius-sm: 12px;
  --radius-xs: 8px;
  --header-h: 72px;
  --font: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: 0.28s var(--ease);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse 80% 50% at 15% -5%, rgba(247, 162, 27, 0.09), transparent 55%),
    radial-gradient(ellipse 60% 40% at 85% 5%, rgba(138, 46, 255, 0.07), transparent 50%),
    radial-gradient(ellipse 50% 30% at 50% 100%, rgba(90, 22, 200, 0.05), transparent 60%);
}

html.nav-open,
body.nav-open {
  overflow: hidden;
  overscroll-behavior: none;
}

body.nav-open::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 998;
  background: var(--bg-deep);
  pointer-events: auto;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--gold-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

a:hover {
  color: var(--gold);
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container--narrow {
  max-width: 760px;
}

/* --------------------------------------------------------------------------
   Utilidades
   -------------------------------------------------------------------------- */

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* --------------------------------------------------------------------------
   Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  border-bottom: 1px solid var(--border);
  background: rgba(11, 11, 13, 0.78);
}

@media (min-width: 861px) {
  .site-header {
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: opacity var(--transition), transform var(--transition);
}

.logo:hover {
  opacity: 0.92;
  transform: translateY(-1px);
}

.logo__img {
  height: clamp(32px, 5vw, 42px);
  width: auto;
  max-width: min(210px, 58vw);
  object-fit: contain;
}

.logo--footer {
  display: inline-flex;
}

.logo--footer .logo__img {
  height: clamp(36px, 5vw, 48px);
  max-width: 220px;
}

.logo--footer:hover {
  transform: none;
  opacity: 1;
}

.site-nav {
  display: flex;
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 0.35rem 1.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-nav a:not(.btn) {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  transition: color var(--transition);
}

.site-nav a:not(.btn):hover {
  color: var(--text);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  background: var(--surface);
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition);
}

.nav-toggle:hover {
  border-color: var(--border-hover);
  background: var(--surface-2);
}

.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 860px) {
  .site-header {
    z-index: 1000;
    background: var(--bg-deep);
  }

  .header__inner {
    position: relative;
    z-index: 1001;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 1002;
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem 1.5rem 2.5rem;
    background: var(--bg-deep);
    border-top: 1px solid var(--border);
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
  }

  .site-nav__list li {
    border-bottom: 1px solid var(--border);
  }

  .site-nav__list a:not(.btn) {
    display: block;
    padding: 1rem 0;
    font-size: 1.05rem;
  }

  .site-nav__list li:last-child {
    border-bottom: none;
    padding-top: 1.25rem;
  }

  .site-nav__list li:last-child .btn {
    width: 100%;
    justify-content: center;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* --------------------------------------------------------------------------
   Botones
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.94rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition),
    border-color var(--transition),
    transform 0.2s var(--ease),
    box-shadow var(--transition),
    filter var(--transition);
}

.btn--small {
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
}

.btn--large {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}

.btn--primary {
  background: var(--gradient);
  color: #fff;
  box-shadow: 0 8px 32px rgba(138, 46, 255, 0.28);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(247, 162, 27, 0.32);
  filter: brightness(1.06);
  color: #fff;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-color: var(--border);
}

.btn--ghost:hover {
  border-color: var(--border-hover);
  background: rgba(247, 162, 27, 0.06);
  color: var(--text);
}

.btn--outline {
  background: transparent;
  color: var(--gold-light);
  border-color: rgba(247, 162, 27, 0.35);
}

.btn--outline:hover {
  background: rgba(247, 162, 27, 0.1);
  border-color: rgba(247, 162, 27, 0.55);
  color: var(--gold-light);
}

.btn--wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #fff;
  border: none;
  box-shadow: 0 8px 28px rgba(18, 140, 126, 0.3);
}

.btn--wa:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  color: #fff;
}

.btn__icon {
  width: 1.15rem;
  height: 1.15rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  position: relative;
  flex-shrink: 0;
}

.btn__icon::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-top-color: transparent;
  transform: rotate(-35deg);
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  padding: 5rem 0 4.5rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .hero {
    padding: 6.5rem 0 5.5rem;
  }
}

.hero__glow {
  position: absolute;
  inset: -30% -20% auto;
  height: 80%;
  background: radial-gradient(closest-side, rgba(247, 162, 27, 0.12), transparent 70%);
  pointer-events: none;
}

.hero__glow--secondary {
  inset: auto -30% -40% auto;
  width: 60%;
  height: 60%;
  background: radial-gradient(closest-side, rgba(138, 46, 255, 0.1), transparent 70%);
}

.hero__inner {
  position: relative;
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0.4rem 0.9rem 0.4rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(247, 162, 27, 0.08);
  border: 1px solid rgba(247, 162, 27, 0.2);
  border-radius: 999px;
}

.hero__eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 12px rgba(247, 162, 27, 0.6);
}

.hero__title {
  margin: 0 0 1.25rem;
  font-size: clamp(2.25rem, 5.5vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  font-weight: 800;
}

.hero__lead {
  margin: 0 0 2.25rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.hero__trust {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero__trust li {
  position: relative;
  padding-left: 1.35rem;
}

.hero__trust li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gradient);
  box-shadow: 0 0 10px rgba(138, 46, 255, 0.45);
}

/* --------------------------------------------------------------------------
   Secciones
   -------------------------------------------------------------------------- */

.section {
  padding: 4.5rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section--alt {
  background: var(--bg);
}

.section__head {
  text-align: center;
  margin-bottom: 3rem;
}

.section__label {
  display: inline-block;
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
}

.section__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  letter-spacing: -0.03em;
  font-weight: 700;
}

.section__subtitle {
  margin: 0 auto;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Beneficios
   -------------------------------------------------------------------------- */

.benefits__grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .benefits__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.benefit-card {
  position: relative;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--gradient);
  opacity: 0;
  transition: opacity var(--transition);
}

.benefit-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}

.benefit-card:hover::before {
  opacity: 1;
}

.benefit-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.15rem;
  border-radius: var(--radius-sm);
  background: var(--gradient-soft);
  border: 1px solid rgba(247, 162, 27, 0.15);
  color: var(--gold-light);
}

.benefit-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card__title {
  margin: 0 0 0.6rem;
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.benefit-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   Planes
   -------------------------------------------------------------------------- */

.plans-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

@media (min-width: 720px) {
  .plans-grid--featured {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }
}

@media (min-width: 640px) {
  .plans-grid--page {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.plan-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gradient-soft);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.plan-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow);
}

.plan-card:hover::after {
  opacity: 1;
}

.plan-card > * {
  position: relative;
  z-index: 1;
}

.plan-card__head {
  margin-bottom: 1.15rem;
}

.plan-tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 6px;
  background: rgba(138, 46, 255, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(138, 46, 255, 0.35);
}

.plan-card__title {
  margin: 0 0 0.4rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.plan-card__desc {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.plan-stats {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  gap: 0;
  font-size: 0.88rem;
}

.plan-stats li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
}

.plan-stats li:last-child {
  border-bottom: none;
}

.plan-stats li span {
  color: var(--muted);
}

.plan-stats li strong {
  font-weight: 600;
  color: var(--text);
}

.plan-prices {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1.35rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid var(--border);
}

.plan-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.88rem;
  color: var(--muted);
}

.plan-price-row strong {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
}

.plan-card__cta {
  margin-top: auto;
  width: 100%;
  justify-content: center;
}

/* Acentos por plan */
.plan-card--rosa {
  border-top: 3px solid #e879a8;
}
.plan-card--azul {
  border-top: 3px solid #60a5fa;
}
.plan-card--gris {
  border-top: 3px solid #9ca3af;
}
.plan-card--dorado {
  border-top: 3px solid var(--gold);
}
.plan-card--negro {
  border-top: 3px solid #6b7280;
}
.plan-card--celeste {
  border-top: 3px solid #38bdf8;
}
.plan-card--verde {
  border-top: 3px solid #4ade80;
}

.plans-section__footer {
  margin-top: 2.75rem;
  text-align: center;
}

.plans-empty {
  text-align: center;
  color: var(--muted);
  padding: 3rem 1.5rem;
  font-size: 1.05rem;
}

/* --------------------------------------------------------------------------
   Filtros
   -------------------------------------------------------------------------- */

.plan-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-btn {
  appearance: none;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--muted);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: var(--font);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform 0.2s var(--ease);
}

.filter-btn:hover {
  color: var(--text);
  border-color: var(--border-hover);
}

.filter-btn.is-active {
  color: #fff;
  background: var(--gradient);
  border-color: transparent;
  box-shadow: 0 6px 24px rgba(138, 46, 255, 0.25);
}

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq__item {
  padding: 0;
  border-radius: var(--radius-sm);
  background: var(--surface);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.faq__item[open] {
  border-color: var(--border-hover);
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.98rem;
  list-style: none;
  padding: 1.1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--transition);
}

.faq__item summary:hover {
  color: var(--gold-light);
}

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

.faq__item summary::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: var(--gradient);
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2.5'%3E%3Cpath d='M12 5v14M5 12h14'/%3E%3C/svg%3E") center / 14px no-repeat;
  border-radius: 50%;
  opacity: 0.85;
  transition: transform 0.25s var(--ease);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
}

.faq__item p {
  margin: 0;
  padding: 0 1.25rem 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.faq__item p a {
  color: var(--gold-light);
}

/* --------------------------------------------------------------------------
   CTA final + page hero
   -------------------------------------------------------------------------- */

.cta-final {
  padding: 5rem 0;
  border-top: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 100%, rgba(138, 46, 255, 0.08), transparent 65%);
  pointer-events: none;
}

.cta-final__inner {
  position: relative;
  text-align: center;
  max-width: 540px;
  margin: 0 auto;
}

.cta-final__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cta-final__text {
  margin: 0 0 1.75rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.page-hero {
  position: relative;
  padding: 4rem 0 2rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .page-hero {
    padding: 5rem 0 2.5rem;
  }
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: -40% 0 auto;
  height: 100%;
  background: radial-gradient(ellipse 60% 50% at 30% 0%, rgba(247, 162, 27, 0.08), transparent 60%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero__eyebrow {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
}

.page-hero__title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  letter-spacing: -0.035em;
  font-weight: 800;
}

.page-hero__lead {
  margin: 0;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  padding: 3.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-deep);
}

.site-footer__inner {
  display: grid;
  gap: 2rem;
  text-align: center;
}

@media (min-width: 720px) {
  .site-footer__inner {
    grid-template-columns: 1fr auto;
    text-align: left;
    align-items: start;
    gap: 2.5rem;
  }

  .site-footer__legal {
    grid-column: 1 / -1;
  }
}

.site-footer__brand .logo {
  margin-bottom: 0.85rem;
}

.site-footer__tagline {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  max-width: 24rem;
  line-height: 1.6;
}

.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.5rem;
  justify-content: center;
}

@media (min-width: 720px) {
  .site-footer__nav {
    justify-content: flex-end;
    padding-top: 0.5rem;
  }
}

.site-footer__nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color var(--transition);
}

.site-footer__nav a:hover {
  color: var(--gold-light);
}

.site-footer__legal {
  margin: 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
  opacity: 0.85;
}

/* --------------------------------------------------------------------------
   Animaciones de entrada
   -------------------------------------------------------------------------- */

@media (prefers-reduced-motion: no-preference) {
  .hero__inner,
  .section__head,
  .benefit-card,
  .cta-final__inner {
    animation: fadeUp 0.7s var(--ease) both;
  }

  .benefit-card:nth-child(2) {
    animation-delay: 0.08s;
  }

  .benefit-card:nth-child(3) {
    animation-delay: 0.16s;
  }

  .benefit-card:nth-child(4) {
    animation-delay: 0.24s;
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   Accesibilidad
   -------------------------------------------------------------------------- */

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.btn:focus-visible,
.filter-btn:focus-visible,
.nav-toggle:focus-visible {
  outline-offset: 3px;
}

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

  html {
    scroll-behavior: auto;
  }
}
