/* ═══════════════════════════════════════════════════════════
   DEIROS — Estilos principales
   Archetype: Editorial Dark Warm (adaptado alquiler de vehículos)
   v=20260518
   ═══════════════════════════════════════════════════════════ */

/* ─── TOKENS ─────────────────────────────────────────────── */
:root {
  --bg:       #0C0F16;
  --bg-2:     #131822;
  --bg-3:     #1C2333;
  --bg-4:     #242d42;
  --cream:    #EBE5D5;
  --cream-2:  #C5BBA6;
  --cream-3:  #857A68;
  --accent:   #E8A020;
  --accent-2: #C88A18;
  --accent-rgb: 232, 160, 32;
  --line:     rgba(235,229,213,.10);
  --line-2:   rgba(235,229,213,.06);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --r-sm:  6px;
  --r-md:  12px;
  --r-lg:  20px;

  --nav-h: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
}

/* ─── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: clip;
  scroll-behavior: smooth;
  font-size: 16px;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ─── CONTENEDOR ──────────────────────────────────────────── */
.container {
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}

/* ─── REVEAL (scroll animations) ─────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
/* Mandatory safety: data-split elements must never be hidden */
.reveal[data-split] { opacity: 1; transform: none; }

/* ─── TYPOGRAPHY HELPERS ──────────────────────────────────── */
.section-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--cream);
  text-wrap: balance;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}
.section-sub {
  margin-top: 1rem;
  color: var(--cream-2);
  font-size: 1.05rem;
  max-width: 56ch;
}
.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-head .section-sub { margin-inline: auto; }

/* ─── BOTONES ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--r-sm);
  font-size: .95rem;
  font-weight: 600;
  line-height: 1;
  transition: transform .2s var(--ease-out), box-shadow .2s var(--ease-out), background .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: #0C0F16;
}
.btn-primary:hover {
  background: var(--accent-2);
  box-shadow: 0 8px 32px rgba(var(--accent-rgb), .35);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  border-color: rgba(235,229,213,.3);
  background: rgba(235,229,213,.05);
}

.btn-wa {
  width: 100%;
  justify-content: center;
  background: #25D366;
  color: #fff;
  font-size: 1rem;
  padding: 1rem;
}
.btn-wa:hover {
  background: #1ebc59;
  box-shadow: 0 8px 32px rgba(37,211,102,.35);
}
.btn-wa-icon { display: flex; align-items: center; }

/* ─── NAV ────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  transition: background .4s, box-shadow .4s;
}
.nav.is-solid {
  background: rgba(12,15,22,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
}
.nav-logo-img {
  height: 32px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: var(--cream);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--cream-2);
  transition: color .2s;
}
.nav-links a:hover { color: var(--cream); }
.nav-links .nav-cta {
  background: var(--accent);
  color: #0C0F16;
  padding: .5rem 1.25rem;
  border-radius: var(--r-sm);
  font-weight: 600;
}
.nav-links .nav-cta:hover {
  background: var(--accent-2);
  color: #0C0F16;
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  background: rgba(12,15,22,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--line);
}
.nav-mobile ul {
  padding: 1.5rem clamp(1.25rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.nav-mobile a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream);
  display: block;
  padding: .5rem 0;
  border-bottom: 1px solid var(--line-2);
}

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

/* ─── HERO ───────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: clip;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(12,15,22,.82) 0%,
    rgba(12,15,22,.65) 50%,
    rgba(12,15,22,.75) 100%
  );
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(var(--accent-rgb),.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 40% at 80% 20%, rgba(var(--accent-rgb),.07) 0%, transparent 60%);
  animation: meshPulse 12s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes meshPulse {
  from { opacity: .6; }
  to   { opacity: 1; }
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-inner {
  position: relative;
  z-index: 3;
  width: min(100%, 1200px);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 5vw, 3rem);
  padding-top: calc(var(--nav-h) + 3rem);
  padding-bottom: 5rem;
}
.hero-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp .8s var(--ease-out) .2s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--cream);
  text-wrap: balance;
  max-width: 16ch;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .4s forwards;
}
.hero-title em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--cream-2);
  max-width: 46ch;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .6s forwards;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  animation: fadeUp .9s var(--ease-out) .75s forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 1.2s forwards;
}
.hero-scroll-line {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLinePulse 2s ease-in-out infinite;
}
@keyframes scrollLinePulse {
  0%, 100% { transform: scaleY(1); opacity: .7; }
  50%       { transform: scaleY(1.3); opacity: 1; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── STATS ──────────────────────────────────────────────── */
.stats {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 3rem 0;
}
.stats-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stats-item {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1rem 2rem;
}
.stats-sep {
  width: 1px;
  height: 48px;
  background: var(--line);
  flex-shrink: 0;
}
.stats-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .4rem;
}
.stats-label {
  font-size: .85rem;
  color: var(--cream-3);
  letter-spacing: .04em;
}
@media (max-width: 600px) {
  .stats-sep { display: none; }
  .stats-item { flex-basis: 100%; border-bottom: 1px solid var(--line-2); }
  .stats-item:last-child { border-bottom: none; }
}

/* ─── VENTAJAS ───────────────────────────────────────────── */
.ventajas {
  padding: 7rem 0;
  background: var(--bg);
}
.ventajas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.ventajas-img {
  border-radius: var(--r-lg);
  overflow: clip;
  aspect-ratio: 4/5;
}
.ventajas-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.ventajas-img:hover img { transform: scale(1.04); }
.ventajas-content .section-title { margin-bottom: 2rem; }
.ventajas-list { display: flex; flex-direction: column; gap: 1.5rem; }
.ventaja-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.ventaja-icon {
  font-size: 1.2rem;
  color: var(--accent);
  margin-top: .15rem;
  flex-shrink: 0;
}
.ventaja-item strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: .25rem;
}
.ventaja-item p {
  font-size: .9rem;
  color: var(--cream-3);
  line-height: 1.6;
}
@media (max-width: 900px) {
  .ventajas-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ventajas-img { aspect-ratio: 16/9; max-height: 340px; }
}

/* ─── PACKS ──────────────────────────────────────────────── */
.packs {
  padding: 7rem 0;
  background: var(--bg-2);
}
.packs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.pack-card {
  background: var(--bg-3);
  border-radius: var(--r-lg);
  overflow: clip;
  border: 1px solid var(--line);
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
}
@media (hover: hover) {
  .pack-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 64px rgba(0,0,0,.4), 0 0 0 1px rgba(var(--accent-rgb),.2);
    border-color: rgba(var(--accent-rgb),.25);
  }
}
.pack-img-wrap {
  aspect-ratio: 4/3;
  overflow: clip;
}
.pack-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
@media (hover: hover) {
  .pack-card:hover .pack-img { transform: scale(1.06); }
}
.pack-body { padding: 1.5rem; }
.pack-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(var(--accent-rgb),.12);
  padding: .3rem .7rem;
  border-radius: 4px;
  margin-bottom: .9rem;
}
.pack-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: .6rem;
  line-height: 1.25;
}
.pack-desc {
  font-size: .875rem;
  color: var(--cream-3);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.pack-cta {
  font-size: .85rem;
  font-weight: 600;
  color: var(--accent);
  transition: gap .2s;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.pack-cta:hover { gap: .5rem; }

/* ─── PRECIOS ────────────────────────────────────────────── */
.precios {
  padding: 7rem 0;
  background: var(--bg);
}
.precios-table-wrap {
  overflow-x: auto;
  border-radius: var(--r-md);
  border: 1px solid var(--line);
}
.precios-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.precios-table thead tr {
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.precios-table th {
  padding: 1rem 1.5rem;
  text-align: left;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--cream-3);
}
.precios-table td {
  padding: 1rem 1.5rem;
  color: var(--cream-2);
  border-bottom: 1px solid var(--line-2);
}
.precios-table tbody tr:last-child td { border-bottom: none; }
.precios-table tbody tr:nth-child(even) { background: rgba(255,255,255,.02); }
.precio-val {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent) !important;
}
.precio-row-cta td { color: var(--cream-3); }
.precio-row-cta a {
  color: var(--accent);
  font-weight: 600;
  transition: opacity .2s;
}
.precio-row-cta a:hover { opacity: .75; }
.precios-nota {
  margin-top: 1.5rem;
  font-size: .82rem;
  color: var(--cream-3);
  text-align: center;
}

/* ─── ZONA ───────────────────────────────────────────────── */
.zona {
  padding: 7rem 0;
  background: var(--bg-2);
}
.zona-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}
.zona-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 1.5rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  font-size: .95rem;
  color: var(--cream-2);
  transition: border-color .2s, background .2s;
}
.zona-item:hover {
  border-color: rgba(var(--accent-rgb),.3);
  background: rgba(var(--accent-rgb),.04);
}
.zona-item em {
  font-size: .78rem;
  color: var(--cream-3);
  font-style: normal;
}
.zona-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}
.zona-nota {
  text-align: center;
  font-size: .9rem;
  color: var(--cream-3);
}
.zona-nota strong { color: var(--accent); }

/* ─── RESEÑAS ────────────────────────────────────────────── */
.resenas {
  padding: 7rem 0;
  background: var(--bg);
}
.resenas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.resena-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: border-color .3s, transform .3s;
}
@media (hover: hover) {
  .resena-card:hover {
    border-color: rgba(var(--accent-rgb),.2);
    transform: translateY(-4px);
  }
}
.resena-stars {
  color: var(--accent);
  font-size: 1rem;
  letter-spacing: .1em;
}
.resena-texto {
  font-size: .95rem;
  color: var(--cream-2);
  line-height: 1.7;
  font-style: normal;
  flex: 1;
}
.resena-texto::before { content: '\201C'; }
.resena-texto::after  { content: '\201D'; }
.resena-autor {
  font-size: .82rem;
  color: var(--cream-3);
}
.resena-autor strong { color: var(--cream); font-weight: 600; }

/* ─── CONTACTO ───────────────────────────────────────────── */
.contacto {
  padding: 7rem 0;
  background: var(--bg-2);
}
.contacto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contacto-copy .section-title { margin-bottom: 1rem; }
.contacto-desc {
  font-size: .95rem;
  color: var(--cream-2);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.contacto-trust {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.contacto-trust li {
  font-size: .88rem;
  color: var(--cream-3);
}
.contacto-trust li::before { content: none; }
.contacto-form {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--cream-2);
  text-transform: uppercase;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .95rem;
  padding: .7rem 1rem;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--cream-3); }
.form-group select option { background: var(--bg-2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: rgba(var(--accent-rgb),.5);
  box-shadow: 0 0 0 3px rgba(var(--accent-rgb),.1);
}
.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(.5);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-legal {
  font-size: .75rem;
  color: var(--cream-3);
  text-align: center;
}
.form-legal a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(var(--accent-rgb),.4);
}
@media (max-width: 900px) {
  .contacto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ─── FAQ ────────────────────────────────────────────────── */
.faq {
  padding: 7rem 0;
  background: var(--bg);
}
.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.faq-item {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: clip;
  transition: border-color .2s;
}
.faq-item:has(.faq-q[aria-expanded="true"]) {
  border-color: rgba(var(--accent-rgb),.3);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-size: .95rem;
  font-weight: 600;
  color: var(--cream);
  cursor: pointer;
  user-select: none;
  transition: color .2s;
}
.faq-q:hover { color: var(--accent); }
.faq-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: var(--cream-3);
  border-radius: 2px;
  transition: transform .3s var(--ease-out), opacity .3s;
}
.faq-icon::before { width: 2px; height: 18px; left: 8px; top: 0; }
.faq-icon::after  { width: 18px; height: 2px; left: 0; top: 8px; }
.faq-q[aria-expanded="true"] .faq-icon::before { transform: rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: .9rem;
  color: var(--cream-2);
  line-height: 1.7;
  transition: max-height .4s var(--ease-out), padding .3s;
  padding: 0 1.5rem;
}
.faq-a.is-open {
  max-height: 400px;
  padding: 0 1.5rem 1.25rem;
}

/* ─── CONDICIONES ────────────────────────────────────────── */
.condiciones {
  padding: 7rem 0;
  background: var(--bg-2);
}
.condiciones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.condicion-bloque {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.75rem;
}
.condicion-bloque h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--line);
}
.condicion-bloque ul {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.condicion-bloque li {
  font-size: .87rem;
  color: var(--cream-2);
  line-height: 1.55;
  padding-left: 1rem;
  position: relative;
}
.condicion-bloque li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* ─── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 4rem 0 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3rem;
  flex-wrap: wrap;
}
.footer-brand { display: flex; flex-direction: column; gap: .6rem; }
.footer-logo { height: 36px; width: auto; }
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--cream);
}
.footer-tagline { font-size: .82rem; color: var(--cream-3); }
.footer-nav { display: flex; flex-direction: column; gap: 1rem; }
.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
}
.footer-nav a {
  font-size: .88rem;
  color: var(--cream-3);
  transition: color .2s;
}
.footer-nav a:hover { color: var(--cream); }
.footer-legal a { font-size: .8rem; }
.footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line-2);
}
.footer-bottom p {
  font-size: .8rem;
  color: var(--cream-3);
  text-align: center;
}

/* ─── BOTÓN WHATSAPP FLOTANTE ─────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 800;
  background: #25D366;
  color: #fff;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.4rem;
  box-shadow: 0 8px 32px rgba(37,211,102,.35), 0 2px 8px rgba(0,0,0,.3);
  font-size: .9rem;
  font-weight: 600;
  transition: transform .2s var(--ease-out), box-shadow .2s;
}
.wa-float:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 40px rgba(37,211,102,.5), 0 2px 8px rgba(0,0,0,.3);
}
.wa-float svg { flex-shrink: 0; }
@media (max-width: 480px) {
  .wa-float { padding: .85rem; border-radius: 50%; }
  .wa-float-label { display: none; }
}

/* ─── COOKIE BANNER ──────────────────────────────────────── */
.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  max-width: 520px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.25rem 1.5rem;
  z-index: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.cookie-banner p { font-size: .85rem; color: var(--cream-2); flex: 1; min-width: 200px; }
.cookie-banner a { color: var(--accent); text-decoration: underline; }
.cookie-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.btn-cookie-ok {
  background: var(--accent);
  color: #0C0F16;
  font-size: .82rem;
  font-weight: 600;
  padding: .45rem 1rem;
  border-radius: var(--r-sm);
  transition: background .2s;
}
.btn-cookie-ok:hover { background: var(--accent-2); }
.btn-cookie-more {
  font-size: .82rem;
  color: var(--cream-3);
  transition: color .2s;
}
.btn-cookie-more:hover { color: var(--cream); }

/* ─── PÁGINA LEGAL (shared) ──────────────────────────────── */
.legal-page { padding: calc(var(--nav-h) + 4rem) 0 6rem; }
.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--line);
}
.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  margin: 2.5rem 0 .75rem;
}
.legal-page p, .legal-page li {
  font-size: .95rem;
  color: var(--cream-2);
  line-height: 1.75;
  margin-bottom: .75rem;
}
.legal-page ul { padding-left: 1.25rem; list-style: disc; }
.legal-page a { color: var(--accent); text-decoration: underline; }
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .88rem;
  color: var(--accent);
  margin-bottom: 2rem;
  font-weight: 600;
  transition: gap .2s;
}
.legal-back:hover { gap: .6rem; }

/* ─── UTILS ──────────────────────────────────────────────── */
[hidden] { display: none !important; }
.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;
}

/* ─── RESPONSIVE EXTRAS ──────────────────────────────────── */
@media (max-width: 600px) {
  .packs-grid { grid-template-columns: 1fr; }
  .resenas-grid { grid-template-columns: 1fr; }
  .condiciones-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .footer-inner { flex-direction: column; gap: 2rem; }
}

@media (max-width: 768px) {
  .stats-sep:nth-child(4) { display: none; }
}
