/* Total Play León - styles.css */
:root {
  --navy: #0b1b2b;
  --blue: #0d47a1;
  --cyan: #00bcd4;
  --green: #43a047;
  --yellow: #f4b400;
  --text: #e9eef5;
  --muted: #a7b4c7;
  --card: #0f2540;
  --white: #ffffff;
}

* {
  box-sizing: border-box
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: Montserrat, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, var(--navy), #06101c)
}

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

.container {
  width: clamp(280px, 92vw, 1160px);
  margin-inline: auto;
  padding: 24px
}

.muted {
  color: var(--muted)
}

.accent {
  color: var(--cyan);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 27, 43, .9);
  backdrop-filter: saturate(160%) blur(6px);
  border-bottom: 1px solid rgba(255, 255, 255, .06)
}

.header-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem
}

.logo-text span {
  color: #27a9e0
}

.logo-tri {
  width: 18px;
  height: 18px;
  display: inline-block;
  background: conic-gradient(from 0deg, #f44336 0 25%, #ff9800 0 50%, #4caf50 0 75%, #2196f3 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%)
}

.nav a {
  color: var(--text);
  text-decoration: none;
  margin-left: 18px;
  font-weight: 600;
  opacity: .9
}

.nav a:hover {
  opacity: 1
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, .2);
  color: var(--text);
  padding: 8px 10px;
  border-radius: 8px
}

.drawer {
  display: flex;
  flex-direction: column;
  padding: 10px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  background: #0b1b2b
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
  padding-block: 40px
}

.hero-visual {
  min-height: 320px;
  border-radius: 20px;
  background:

    radial-gradient(80% 60% at 70% 30%, rgba(39, 169, 224, .25), transparent 60%),
    radial-gradient(60% 60% at 30% 70%, rgba(67, 160, 71, .25), transparent 60%),
    linear-gradient(135deg, rgba(13, 71, 161, .65), rgba(11, 27, 43, .4)),
    url('data:image/svg+xml;utf8,<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"600\" height=\"400\"><defs><linearGradient id=\"g\" x1=\"0\" x2=\"1\"><stop offset=\"0\" stop-color=\"%23fff\" stop-opacity=\"0.12\"/><stop offset=\"1\" stop-color=\"%23fff\" stop-opacity=\"0\"/></linearGradient></defs><g fill=\"none\" stroke=\"url(%23g)\" stroke-width=\"2\">' + Array.from({
      length:24
    }).map((_, i)=>'<path d=\"M0 ' +(i*16)+' Q 200 ' +(i*12)+' 400 ' +(i*16)+' T 800 ' +(i*16)+'\"/>').join('')+ '</g></svg>');
background-size:cover;
box-shadow:0 8px 40px rgba(0, 0, 0, .35)
}

.hero h1 {
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.1;
  margin: 0 0 10px
}

.lead {
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: var(--text);
  opacity: .95;
  margin: 0 0 14px
}

.hero-bullets {
  margin: 0 0 16px;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px
}

.hero-bullets li {
  background: rgba(255, 255, 255, .06);
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 999px
}

.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}

.btn {
  --bg: linear-gradient(90deg, #1a73e8, #27a9e0);
  --fg: #fff;
  background: var(--bg);
  color: var(--fg);
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  display: inline-block;
  border: none;
  box-shadow: 0 6px 20px rgba(39, 169, 224, .25)
}

.btn:hover {
  transform: translateY(-1px)
}

.btn-outline {
  background: transparent;
  border: 2px solid #27a9e0;
  color: #eaf6ff
}

.btn-lg {
  padding: 14px 22px;
  font-size: 1rem
}

.btn-sm {
  padding: 8px 12px;
  font-size: .9rem
}

.btn-block {
  display: block;
  text-align: center
}

.benefits {
  background: linear-gradient(180deg, rgba(255, 255, 255, .03), transparent);
  padding-block: 36px
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.card {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
  padding: 18px;
  border-radius: 16px;
  min-height: 140px
}

.card h3 {
  margin-top: 0
}

.plans {
  padding-block: 36px
}

.plan {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 20px;
  position: relative
}

.plan .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: linear-gradient(90deg, #27a9e0, #43a047);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 800
}

.plan ul {
  margin: 12px 0 18px 18px
}

.plan.featured {
  outline: 2px solid #27a9e0;
  box-shadow: 0 0 0 6px rgba(39, 169, 224, .12)
}

.note {
  color: var(--muted);
  margin-top: 12px
}

.faq details {
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, .06);
  border-radius: 12px;
  padding: 14px 16px;
  margin: 10px 0
}

.faq summary {
  cursor: pointer;
  font-weight: 700
}

.site-footer {
  background: #08121d;
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding-top: 24px
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px
}

.site-footer h3,
.site-footer h4 {
  margin: 0 0 8px
}

.links {
  list-style: none;
  margin: 0;
  padding: 0
}

.links li {
  margin: 6px 0
}

.legal {
  color: var(--muted);
  padding-bottom: 24px
}

.fab-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #25D366;
  color: #fff;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  z-index: 60
}

.fab-whatsapp:hover {
  transform: translateY(-2px)
}

@media (max-width: 920px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 18px
  }

  .grid-3 {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .nav {
    display: none
  }

  .nav-toggle {
    display: block
  }

  .drawer a {
    padding: 10px 0;
    color: var(--text);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, .06)
  }

  .drawer a:last-child {
    border-bottom: none
  }
}