/* ================================================
   TIGER RENT A CAR – ESTILO PREMIUM LIMPIO (BLANCO)
   ================================================= */

/* ---- RESETEO GENERAL ---- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  color: #222;
  background-color: #ffffff;
  line-height: 1.6;
}

/* ----------------------------------------------------------
   [2] ENCABEZADO Y NAVEGACIÓN PRINCIPAL
   ---------------------------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 2px solid #f47a0b;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  z-index: 1000;
  padding: 0.8rem 0 0.5rem;
  animation: fadeInDown 1.2s ease;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  transition: transform 0.3s ease;
}

.logo:hover { transform: scale(1.05); }

.logo img {
  width: 55px;
  filter: drop-shadow(0 0 4px rgba(0, 0, 0, 0.2));
}

header h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.8rem;
  margin: 0.3rem 0 0.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.slogan {
  font-size: 1rem;
  color: #f47a0b;
  margin-top: 0.3rem;
  opacity: 0.9;
  animation: fadeIn 2s ease;
}

/* --- Navegación --- */
nav {
  margin-top: 0.4rem;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.8rem;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  color: #000;
  transition: color 0.3s ease, transform 0.3s ease;
}

nav a:hover {
  transform: scale(1.1);
  color: #f47a0b;
}

nav a[href*="tiger"] { color: #f47a0b; }
nav a[href*="cumbre"] { color: #004C7D; }

@media (max-width: 768px) {
  nav ul { gap: 0.5rem; }
  nav a { font-size: 0.9rem; }
}

/* ---- HERO ---- */
.hero-banner {
  margin-top: 100px;
  position: relative;
  height: 90vh;
  background: url("Images/tiger-banner.webp") no-repeat center 65% /cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
 animation: zoomIn 1.2s ease forwards;
}

.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.4); /* overlay claro */
}

.hero-text {
  position: relative;
  color: #111;
  z-index: 2;
  max-width: 700px;
}

.hero-text h2 {
  font-size: 1.5em;
  font-weight: 600;
  color: #000;
  margin-bottom: 10px;
}

.hero-text p {
  font-size: 1.2em;
  color: #333;
}

.naranja {
  color: #f47a0b;
  font-weight: 600;
}

/* Bloque blanco detrás del texto */
.hero-text {
  background: rgba(255, 255, 255, 0.95); /* fondo blanco translúcido */
  border-radius: 18px;
  padding: 5px 80px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  max-width: 800px;
  font-family: "Montserrat", sans-serif;
  color: #111; /* mantiene el color original */
  position: relative;
  z-index: 2;
  transition: transform 0.8s ease, opacity 0.8s ease;
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .hero-banner {
    margin-top: 100px;
    height: 55vh;
    padding: 0 15px;
    animation: zoomIn 1.2s ease forwards;
  }

  .hero-text {
    padding: 2px 2px;
  }

  .hero-text h2 {
    font-size: 1.2em;
  }

  .hero-text p {
    font-size: 1em;
  }
}


/* ---- BENEFICIOS ---- */
.beneficios {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 20px;
  padding: 80px 10%;
  background-color: #fff;
}

.beneficio {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 15px;
  padding: 25px;
  width: 300px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.beneficio:hover {
  transform: translateY(-5px);
}

.beneficio h3 {
  color: #f47a0b;
  margin-bottom: 10px;
}

/* ---- MAPAS ---- */
.mapas {
  text-align: center;
  padding: 80px 10%;
}

.mapas h2 {
  font-size: 2em;
  margin-bottom: 40px;
  color: #111;
}

.contenedor-mapas {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.mapa-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease;
}

.mapa-item:hover {
  transform: scale(1.03);
}

.mapa-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.mapa-item p {
  padding: 15px;
  color: #222;
  font-weight: 500;
}

/* ---- BLOQUE LLAVE EXTRA ---- */
.llave-extra {
  background: linear-gradient(90deg, #fff, #f9f9f9);
  text-align: center;
  padding: 80px 10%;
  border-top: 1px solid #eee;
}

.llave-extra h2 {
  color: #111;
  font-size: 2em;
  margin-bottom: 20px;
}

.llave-extra p {
  color: #333;
  margin-bottom: 30px;
}

.boton-naranja {
  display: inline-block;
  background: #f47a0b;
  color: #fff;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.boton-naranja:hover {
  background: #d7680a;
}

/* ---- CÓDIGO DESCUENTO ---- */
.codigo-descuento {
  text-align: center;
  padding: 80px 10%;
  background-color: #fff;
  border-top: 1px solid #eee;
}

.codigo-descuento h2 {
  color: #111;
  margin-bottom: 15px;
}

.codigo-descuento input {
  padding: 10px 15px;
  border: 1px solid #ccc;
  border-radius: 20px;
  width: 250px;
  margin-right: 10px;
}

.codigo-descuento button {
  background-color: #f47a0b;
  color: #fff;
  border: none;
  border-radius: 20px;
  padding: 10px 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.codigo-descuento button:hover {
  background-color: #d7680a;
}

/* ---- WHATSAPP FLOAT ---- */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 200;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
  transition: transform 0.3s ease;
}

.whatsapp-float:hover img {
  transform: scale(1.1);
}

/* ---- FOOTER ---- */
footer {
  text-align: center;
  padding: 30px 10%;
  color: #555;
  border-top: 1px solid #e6e6e6;
  background-color: #fff;
  font-size: 0.9em;
}

@media (max-width: 768px) {
  .beneficios {
    flex-direction: column;
    align-items: center;
  }

  .beneficio {
    width: 90%;
  }

}


/* ---- MAPAS (versión liviana) ---- */
.mapas {
  text-align: center;
  padding: 80px 8%;
  background-color: #fff;
}

.mapas h2 {
  font-size: 2em;
  color: #111;
  margin-bottom: 40px;
}

.contenedor-mapas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
  gap: 40px;
}

.mapa-item {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  overflow: hidden;
}

.mapa-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.mapa-item img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-bottom: 1px solid #eee;
}

.mapa-item h3 {
  font-size: 1.1em;
  color: #111;
  margin-top: 12px;
}

.mapa-item p {
  font-size: 0.95em;
  color: #444;
  padding: 0 15px 15px;
}
.subtexto-mapas {
  font-size: 0.95em;
  color: #666;
  margin-bottom: 40px;
  text-align: center;
  font-style: italic;
}
@media (max-width: 768px) {
  .mapas {
    overflow: hidden;
    padding: 50px 0;
  }

  .contenedor-mapas {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 5%;
    width: 100%;
    scroll-behavior: smooth;
    justify-content: flex-start; /* 👈 fuerza el inicio */
    scroll-padding-left: 0;  
  }

  .mapa-item { 
    justify-content: space-between; /* distribuye imagen y texto */
    height: 380px; /* 👈 ajustá este valor según la estética */
    scroll-snap-align: start;
    flex: 0 0 80%;
    scroll-snap-align: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
  }

  .mapa-item img {
    flex: 0 0 65%; /* ocupa el 60% del alto */
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .mapa-item h3,
  .mapa-item p {
    padding: 0 15px;
    text-align: center;
  }

  .mapa-item:hover {
    transform: scale(1.03);
  }

  .contenedor-mapas::-webkit-scrollbar {
    display: none;
  }
}

.nota-legal {
  text-align: center;
  font-size: 0.85em;
  color: #777;
  margin-top: 15px;
  font-style: italic;
}

/* ----------------------------------------------------------
   [7] ANIMACIONES GLOBALES
   ---------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeSlideUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes zoomIn {
  from {
    transform: scale(1.15);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.bloque-narrativa.visual h3 {
  font-size: 2em;
  color: #f47a0b;
  letter-spacing: 1px;
  text-transform: uppercase;
  animation: fadeInUp 1s ease-in-out;
}

.bloque-narrativa.visual p {
  font-size: 1.1em;
  line-height: 1.6em;
  color: #333;
  animation: fadeIn 2s ease-in-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 3;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .beneficios {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 16px;
    padding: 16px;
    justify-content: flex-start !important;
    align-items: stretch !important;
  }

  .beneficio {
    width: auto !important;
    max-width: none !important;
    flex: 0 0 75% !important;   /* probá 70%/80% según tu gusto */
    scroll-snap-align: center;
    text-align: center;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,.08);
    transition: transform .3s ease;
    margin: 0 5px;
  }

  .beneficios::-webkit-scrollbar { display: none; }
}

/* =====================================================
   SECCIÓN ECOSISTEMA LLAVE EXTRA
   ===================================================== */
.ecosistema-tiger {
  background: #fff;
  text-align: center;
  padding: 80px 10%;
  border-top: 1px solid #eee;
}

.ecosistema-tiger h2 {
  font-size: 2em;
  color: #111;
  margin-bottom: 10px;
}

.subtexto-ecosistema {
  color: #555;
  font-size: 1.05em;
  margin-bottom: 50px;
}

.contenedor-ecosistema {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.card-ecosistema {
  display: block;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.card-ecosistema:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.card-ecosistema img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-ecosistema h3 {
  color: #000000;
  font-size: 1.3em;
  margin-top: 10px;
}

.card-ecosistema p {
  font-size: 0.95em;
  color: #444;
  padding: 0 15px 25px;
}







/* =====================================================
   VERSIÓN LIMPIA – CARRUSEL MÓVIL SECCIÓN ECOSISTEMA
   ===================================================== */
@media (max-width: 768px) {

  .ecosistema-tiger {
    padding: 40px 5% !important;
    justify-content: flex-start !important;
  }

  .ecosistema-tiger h2 {
    font-size: 1.4em !important;
    margin-bottom: 8px !important;
  }

  .subtexto-ecosistema {
    font-size: 0.9em !important;
    margin-bottom: 25px !important;
    line-height: 1.4 !important;
  }

  /* --- Carrusel general --- */
  .contenedor-ecosistema {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    justify-content: flex-start !important;
    align-items: stretch !important;

    /* Espaciado compacto */
    gap: 4px !important;
    padding: 8px 3% !important;
    width: 100% !important;
    scroll-padding-left: 3% !important;
  }

  /* --- Tarjetas --- */
  .card-ecosistema {
    flex: 0 0 75% !important; /* mostrará una y parte de la siguiente */
    max-width: none !important;
    scroll-snap-align: start !important;
    border-radius: 14px !important;
    box-shadow: 0 3px 10px rgba(0,0,0,0.08) !important;
    transition: transform 0.3s ease !important;
    text-align: center !important;
    background: #fff !important;
    margin: 0 5px !important;
  }

  .card-ecosistema img {
    width: 100% !important;
    height: 140px !important;
    object-fit: cover !important;
  }

  .card-ecosistema h3 {
    font-size: 1.1em !important;
    margin-top: 6px !important;
  }

  .card-ecosistema p {
    font-size: 0.85em !important;
    padding: 0 10px 15px !important;
    line-height: 1.3 !important;
  }

  /* Ocultar barra de desplazamiento */
  .contenedor-ecosistema::-webkit-scrollbar {
    display: none !important;
  }
}

/* ----------------------------------------------------------
   BOTÓN DESTACADO RED TIGER
   ---------------------------------------------------------- */
.boton-redtiger {
  background: linear-gradient(90deg, #ff6600, #ff9444);
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 3px 10px rgba(255,102,0,0.35);
  transition: transform 0.2s ease, box-shadow 0.3s ease;
}

.boton-redtiger:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 15px rgba(255,102,0,0.45);
}

/* Versión móvil: botón centrado y más ancho */
@media (max-width: 768px) {
  .boton-redtiger {
    display: block;
    margin: 8px auto;
    text-align: center;
    width: 100%;
  }
}.boton-redtiger {
  white-space: nowrap; /* 👈 fuerza todo el texto en una sola línea */
}
