/* ================================================================
   VTV ELDORADO — style.css
   Paleta: azul #003E7E / amarillo #F7C300 / gris claro #F2F4F7
   Tipografía: Barlow Condensed (títulos) + Barlow (cuerpo)
   Diseño: flat, sin sombras pesadas ni gradientes complejos
================================================================ */


/* ────────────────────────────────────────────────────────────────
   VARIABLES GLOBALES
──────────────────────────────────────────────────────────────── */
:root {
  --azul:       #003E7E;
  --azul-medio: #0057AF;
  --amarillo:   #F7C300;
  --gris-osc:   #1C1C2E;
  --gris-med:   #5A5A7A;
  --gris-cla:   #F2F4F7;
  --blanco:     #FFFFFF;
  --verde-wa:   #25D366;
  --rojo:       #C0392B;

  --radio:      8px;
  --transicion: 0.25s ease;

  --fuente-titulo: 'Barlow Condensed', sans-serif;
  --fuente-cuerpo: 'Barlow', sans-serif;
}


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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--fuente-cuerpo);
  font-size: 16px;
  color: var(--gris-osc);
  background: var(--blanco);
  overflow-x: hidden;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}


/* ────────────────────────────────────────────────────────────────
   UTILIDADES
──────────────────────────────────────────────────────────────── */
.contenedor {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.seccion {
  padding: 72px 5%;
}

.fondo-blanco { background: var(--blanco); }
.fondo-gris   { background: var(--gris-cla); }
.fondo-azul   { background: var(--azul); }

.texto-centro { text-align: center; }

/* Grillas genéricas */
.grilla-dos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.grilla-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 40px;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}


/* ────────────────────────────────────────────────────────────────
   ETIQUETAS Y TÍTULOS DE SECCIÓN
──────────────────────────────────────────────────────────────── */
.sec-etiqueta {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--azul-medio);
  margin-bottom: 8px;
}

.etiqueta--amarilla {
  color: var(--amarillo);
}

.sec-titulo {
  font-family: var(--fuente-titulo);
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  line-height: 1.05;
  color: var(--gris-osc);
  margin-bottom: 14px;
}

.sec-titulo em {
  font-style: normal;
  color: var(--azul-medio);
}

.titulo--blanco {
  color: var(--blanco);
}

.titulo--blanco em {
  color: var(--amarillo);
}

.sec-bajada {
  color: var(--gris-med);
  font-size: 15px;
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 8px;
}


/* ────────────────────────────────────────────────────────────────
   BOTONES
──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--fuente-cuerpo);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 26px;
  border-radius: var(--radio);
  transition: var(--transicion);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn--primario {
  background: var(--amarillo);
  color: var(--azul);
  border-color: var(--amarillo);
}
.btn--primario:hover {
  background: #e8b600;
  border-color: #e8b600;
}

.btn--secundario {
  background: transparent;
  color: var(--blanco);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn--secundario:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn--banda {
  background: var(--azul);
  color: var(--blanco);
  border-color: var(--azul);
}
.btn--banda:hover {
  background: var(--azul-medio);
  border-color: var(--azul-medio);
}

.btn--mapa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--azul);
  color: var(--blanco);
  border-color: var(--azul);
  margin-top: 24px;
}
.btn--mapa:hover {
  background: var(--azul-medio);
  border-color: var(--azul-medio);
}


/* ────────────────────────────────────────────────────────────────
   NAVEGACIÓN
──────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: var(--azul);
  border-bottom: 3px solid var(--amarillo);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Links */
.nav__links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav__links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  transition: color var(--transicion);
}

.nav__links a:hover {
  color: var(--amarillo);
}

/* Botón turno en nav */
.nav__turno {
  background: var(--amarillo) !important;
  color: var(--azul) !important;
  padding: 7px 16px;
  border-radius: 6px;
  font-weight: 700 !important;
}

.nav__turno:hover {
  background: #e8b600 !important;
  color: var(--azul) !important;
}

/* Burger (mobile) */
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blanco);
  border-radius: 2px;
  transition: var(--transicion);
}


/* ────────────────────────────────────────────────────────────────
   HERO
──────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  padding-top: 64px;
  background: var(--azul);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-left: 8%;
  padding-right: 8%;
}

/* Tag "Misiones · Argentina" */
.hero__tag {
  display: inline-block;
  background: var(--amarillo);
  color: var(--azul);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 20px;
}

.hero__titulo {
  font-family: var(--fuente-titulo);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 900;
  color: var(--blanco);
  line-height: 0.95;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.hero__titulo em {
  font-style: normal;
  color: var(--amarillo);
}

.hero__bajada {
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 420px;
}

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

/* Slider lateral */
.hero__slider {
  /* Oculto en mobile (ver responsive) */
}

.slide-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 32px;
  min-height: 240px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: opacity 0.25s ease;
}

.slide-card__icono {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
}

.slide-card__titulo {
  font-family: var(--fuente-titulo);
  font-size: 26px;
  font-weight: 800;
  color: var(--blanco);
  margin-bottom: 10px;
  line-height: 1.1;
}

.slide-card__texto {
  color: rgba(255, 255, 255, 0.65);
  font-size: 14px;
  line-height: 1.6;
}

.slide-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 16px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: var(--transicion);
  padding: 0;
}

.dot.activo {
  background: var(--amarillo);
  width: 22px;
  border-radius: 4px;
}


/* ────────────────────────────────────────────────────────────────
   BANDA TURNO
──────────────────────────────────────────────────────────────── */
.banda {
  background: var(--amarillo);
  padding: 22px 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
}

.banda__texto {
  font-family: var(--fuente-titulo);
  font-size: 20px;
  font-weight: 700;
  color: var(--azul);
}


/* ────────────────────────────────────────────────────────────────
   QUÉ SE VERIFICA — CARDS
──────────────────────────────────────────────────────────────── */
.card-verifica {
  background: var(--blanco);
  border: 1px solid #E0E4ED;
  border-radius: var(--radio);
  padding: 24px 20px;
  transition: border-color var(--transicion);
}

.card-verifica:hover {
  border-color: var(--azul-medio);
}

.card-verifica__icono {
  font-size: 28px;
  display: block;
  margin-bottom: 12px;
}

.card-verifica h3 {
  font-family: var(--fuente-titulo);
  font-size: 17px;
  font-weight: 700;
  color: var(--gris-osc);
  margin-bottom: 6px;
}

.card-verifica p {
  font-size: 13px;
  color: var(--gris-med);
  line-height: 1.55;
}


/* ────────────────────────────────────────────────────────────────
   CONTACTO
──────────────────────────────────────────────────────────────── */
.item-contacto {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--gris-cla);
}

.item-contacto:last-child {
  border-bottom: none;
}

.item-contacto__icono {
  width: 42px;
  height: 42px;
  border-radius: var(--radio);
  background: var(--gris-cla);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.icono--wa   { background: #E6F8EF; }
.icono--tel  { background: #E6F0FF; }
.icono--mail { background: #FFF4E0; }

.item-contacto strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--gris-osc);
  line-height: 1.3;
}

.item-contacto span {
  font-size: 13px;
  color: var(--gris-med);
}


/* ────────────────────────────────────────────────────────────────
   HORARIOS
──────────────────────────────────────────────────────────────── */
.fila-horario {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--gris-cla);
}

.fila-horario:last-of-type {
  border-bottom: none;
}

.fila-horario__dia {
  font-size: 15px;
  font-weight: 500;
  color: var(--gris-osc);
}

.fila-horario__hora {
  font-family: var(--fuente-titulo);
  font-size: 17px;
  font-weight: 700;
  color: var(--azul-medio);
}

.fila-horario__hora--cerrado {
  color: var(--rojo);
}

.nota-horario {
  margin-top: 20px;
  font-size: 13px;
  color: var(--gris-med);
  line-height: 1.6;
}


/* ────────────────────────────────────────────────────────────────
   PRECIOS
──────────────────────────────────────────────────────────────── */
.lista-precios {
  margin-top: 32px;
  background: var(--blanco);
  border: 1px solid #E0E4ED;
  border-radius: var(--radio);
  overflow: hidden;
}

.fila-precio {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--gris-cla);
  transition: background var(--transicion);
  gap: 16px;
}

.fila-precio:last-child {
  border-bottom: none;
}

.fila-precio:hover {
  background: var(--gris-cla);
}

.fila-precio__categoria {
  font-size: 15px;
  font-weight: 500;
  color: var(--gris-osc);
}

.fila-precio__valor {
  font-family: var(--fuente-titulo);
  font-size: 20px;
  font-weight: 700;
  color: var(--azul-medio);
  white-space: nowrap;
  flex-shrink: 0;
}

.precios-nota {
  font-size: 12px;
  color: var(--gris-med);
  margin-top: 12px;
  text-align: right;
}


/* ────────────────────────────────────────────────────────────────
   MEDIOS DE PAGO
──────────────────────────────────────────────────────────────── */
.grilla-pagos {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.card-pago {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radio);
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  min-width: 140px;
  transition: background var(--transicion);
}

.card-pago:hover {
  background: rgba(255, 255, 255, 0.15);
}

.card-pago__icono {
  font-size: 30px;
}

.card-pago__nombre {
  font-family: var(--fuente-titulo);
  font-size: 15px;
  font-weight: 700;
  color: var(--blanco);
  letter-spacing: 0.3px;
}


/* ────────────────────────────────────────────────────────────────
   REQUISITOS
──────────────────────────────────────────────────────────────── */
.caja-req {
  background: var(--blanco);
  border: 1px solid #E0E4ED;
  border-radius: var(--radio);
  padding: 28px;
}

.caja-req h3 {
  font-family: var(--fuente-titulo);
  font-size: 20px;
  font-weight: 800;
  color: var(--azul);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lista-req {
  list-style: none;
}

.lista-req li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gris-cla);
  font-size: 14px;
  color: var(--gris-med);
  line-height: 1.5;
}

.lista-req li:last-child {
  border-bottom: none;
}

.lista-req li::before {
  content: '✓';
  color: var(--azul-medio);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}


/* ────────────────────────────────────────────────────────────────
   MAPA / UBICACIÓN
──────────────────────────────────────────────────────────────── */
.mapa-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #E0E4ED;
  aspect-ratio: 4 / 3;
}

.mapa-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.ubicacion-datos h2 {
  font-family: var(--fuente-titulo);
  font-size: 36px;
  font-weight: 800;
  color: var(--gris-osc);
  line-height: 1.05;
  margin-bottom: 24px;
}

.direccion-fila {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.direccion-fila span {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.direccion-fila p {
  font-size: 14px;
  color: var(--gris-med);
  line-height: 1.55;
}

.direccion-fila strong {
  display: block;
  color: var(--gris-osc);
  font-weight: 600;
  margin-bottom: 2px;
}


/* ────────────────────────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────────────────────────── */
.footer {
  background: var(--gris-osc);
  padding: 44px 5% 24px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 20px;
}

.footer__marca strong {
  display: block;
  font-family: var(--fuente-titulo);
  font-size: 20px;
  font-weight: 800;
  color: var(--blanco);
  margin-bottom: 4px;
}

.footer__marca span {
  font-size: 12px;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__nav a {
  font-size: 13px;
  transition: color var(--transicion);
}

.footer__nav a:hover {
  color: var(--amarillo);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 12px;
}


/* ────────────────────────────────────────────────────────────────
   WHATSAPP FLOTANTE
──────────────────────────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--verde-wa);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transicion);
}

.wa-float:hover {
  transform: scale(1.1);
}

.wa-float svg {
  width: 28px;
  height: 28px;
  fill: var(--blanco);
}


/* ────────────────────────────────────────────────────────────────
   RESPONSIVE — TABLET Y MOBILE
──────────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .grilla-dos {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}

@media (max-width: 768px) {
  /* Nav: ocultar links, mostrar burger */
  .nav__links {
    display: none;
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--azul);
    flex-direction: column;
    padding: 20px 5% 28px;
    gap: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav__links.abierto {
    display: flex;
  }

  .nav__burger {
    display: flex;
  }

  /* Hero en columna, sin slider */
  .hero {
    grid-template-columns: 1fr;
    padding: 80px 6% 56px;
    min-height: auto;
  }

  .hero__slider {
    display: none;
  }

  .hero__titulo {
    font-size: 52px;
  }

  /* Secciones con menos padding */
  .seccion {
    padding: 52px 5%;
  }

  /* Pagos en columna */
  .grilla-pagos {
    gap: 12px;
  }

  .card-pago {
    min-width: 120px;
    padding: 18px 20px;
  }

  /* Precios en columna */
  .fila-precio {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 14px 16px;
  }

  .fila-precio__valor {
    font-size: 18px;
  }

  .precios-nota {
    text-align: left;
  }

  /* Footer en columna */
  .footer__inner {
    flex-direction: column;
    gap: 20px;
  }

  .footer__bottom {
    flex-direction: column;
  }
}
