/* ============================================
   🌐 GENERAL / GLOBAL SETTINGS
============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
  font-family: 'Helvetica Neue', sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
    .logo-mobile {
    display: none;
  }

a{
  color: #fff;
  text-decoration: none;
}
  .whatsapp-mobile {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 70px;
    height: 70px;
    background-color: #25D366;
    color: white;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  }

.section-divider {
  border: none;
  height: 2px;
  width: 80%;
  background-color: #ccc;
  margin: 4rem auto; /* espacio arriba y abajo */
}

  .whatsapp-mobile i {
    font-size: 1.8rem;
  }

  .other-button {
    width: 100%;
    position: relative;
    text-align: center;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    font-size: 1.1rem;
    transition: background 0.3s ease, color 0.3s ease;
    overflow: hidden;
  }

  .other-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

.other-button:hover::before {
  animation: sheen 1s forwards;
}

@keyframes sheen {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}


.us-button {
    width: 100%;
    position: relative;
    text-align: center;
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    border-color: #fff;
    border-width: 1px;
    border-style: solid;
    font-weight: bold;
    text-decoration: none;
    white-space: nowrap;
    font-size: 1.3rem;
    transition: background 0.3s ease, color 0.3s ease;
    overflow: hidden;
  }

  .us-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

.us-button:hover::before {
  animation: sheen 1s forwards;
}

@keyframes sheen {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

/* ============================================
   🟡 LANGUAGE SWITCH BAR
============================================ */
.language-switch {
  width: 90%;
  text-align: left;
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

.language-switch button {
  background: #000;
  color: #fff;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.language-switch button:hover {
  background: #333;
}

/* ============================================
   🧭 HEADER & NAVBAR
============================================ */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem;
  width: 50%;
  margin: auto;
  background: #fff;
}

nav .logo {
  font-weight: bold;
  font-size: 1.5rem;
  margin-right: 25% ;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

nav ul.nav-links li a {
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

nav ul.nav-links li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #000;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

nav ul.nav-links li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

  .mobile-call-button {
    display: none;
  }
}

/* ============================================
   🚗 HERO SECTION
============================================ */
.hero {
    width: 100%;
    padding: 2rem 0;
}

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: auto;
}

.text-block {
  max-width: 600px;
}

.text-block h1 {
  font-size: 5rem;
  font-weight: 1000;
  line-height: .8;
  margin-bottom: 1rem;
}

.text-block p {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}

.car-image img {
  width: 100%;
  max-width: 700px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}

.car-image img:hover {
  transform: scale(1.05);
}


/* ============================================
   🧰 SERVICES SECTION
============================================ */
.services-panel {
  display: flex;
  flex-wrap: nowrap;
  background-color: #101010;
  color: #fff;
  height: 100vh;
}

.services-intro {
  flex: 1;
  background-color: #111;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.services-intro h2 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.services-line {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, #000, #fff);
}

.service-slide {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  height: 100vh;
  transition: transform 0.3s ease;
}

.service-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: inherit;
  z-index: 0;
  transform: scale(1);
  transition: transform 0.5s ease;
}

.service-slide:hover::before {
  transform: scale(1.05); /* 👈 Sutil efecto zoom */
}

.service-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent 60%);
  z-index: 1;
}

.service-number,
.service-text {
  position: relative;
  z-index: 2;
}

.service-number {
  font-size: 6rem;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.service-text h3 {
  font-size: 1.2rem;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
}

.service-text p {
  font-size: 1rem;
  color: #ccc;
  margin: 0.2rem 0 0;
}



/* ============================================
    🚘 FLEET SECTION
============================================ */
#fleet{
   width:100%vh;
}


.fleet-section {
    background-color: #fff;
    padding: 1rem 2rem; /* Aumentar el padding para más espacio */
    text-align: center;
    overflow: hidden; /* Asegura que nada se desborde */
}

.fleet-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem; /* Pequeño padding horizontal para móviles */
}

.fleet-tagline {
    font-size: 0.85rem;
    font-weight: 700; /* Más peso para que destaque */
    color: #666; /* Un gris más oscuro */
    letter-spacing: 2px; /* Mayor espaciado entre letras */
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.fleet-main-title {
    font-family: 'Arial Black', sans-serif; /* Usar una fuente más impactante si está disponible */
    font-size: 3.5rem; /* Aumentar el tamaño */
    font-weight: 900;
    margin-bottom: 1rem; /* Reducir un poco el margen para que esté más cerca de la descripción */
    text-transform: uppercase;
    color: #000;
    line-height: 1.1; /* Ajustar altura de línea */
}

.fleet-description {
    font-size: 1.1rem; /* Un poco más grande para mejor legibilidad */
    color: #555;
    line-height: 1.6;
    max-width: 800px; /* Limitar ancho para que no se extienda demasiado */
    margin: 0 auto 3rem auto; /* Centrar y añadir margen inferior */
}

/* Optional: Fleet Filters Styles */
.fleet-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 4rem; /* Espacio debajo de los filtros */
}

.filter-btn {
    background-color: #f0f0f0;
    color: #333;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 25px; /* Más redondeado */
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize; /* Capitaliza la primera letra */
}

.filter-btn:hover {
    background-color: #e0e0e0;
}

.filter-btn.active {
    background-color: #000; /* Fondo oscuro como en el ejemplo */
    color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


.fleet-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem; /* Aumentar el espacio entre tarjetas */
    max-width: 1200px;
    margin: 0 auto;
}

.fleet-item {
    flex: 1 1 450px; /* antes decía 280px */
    max-width: 600px; /* aumentamos desde 380px */
    background: #fff;
    border-radius: 10px; /* Mantener redondeo */
    overflow: hidden; /* Importante para que la imagen no sobresalga */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left; /* Alinear texto a la izquierda dentro de la tarjeta */
}


.fleet-item-image { /* Nueva clase para la imagen */
    width: 100%;
    height: 220px; /* Altura fija para todas las imágenes */
    object-fit: cover; /* Recorta la imagen para que encaje sin distorsionarse */
    margin-bottom: 1.5rem; /* Espacio debajo de la imagen */
    border-top-left-radius: 10px; /* Redondear bordes superiores de la imagen */
    border-top-right-radius: 10px;
}

.fleet-item-content { /* Nuevo contenedor para el texto */
    padding: 0 1.5rem 1.5rem 1.5rem; /* Padding interno para el contenido de la tarjeta */
}

.fleet-item h3 {
    font-size: 1.6rem; /* Aumentar tamaño del título del vehículo */
    font-weight: 700; /* Hacerlo más bold */
    margin-bottom: 0.7rem; /* Más espacio debajo del título */
    color: #222; /* Color más oscuro para el título */
    text-transform: uppercase; /* Para que sea consistente con los otros títulos */
}

/* Removimos el estilo para span dentro de h3 ya que cambiamos la estructura HTML */
/* .fleet-item h3 span { ... } */

.fleet-item p {
    font-size: 1rem; /* Un poco más grande para mejor legibilidad */
    color: #666;
    line-height: 1.7;
    margin-bottom: 0; /* Asegurarse de que no haya margen extra abajo */
}

/* ============================================
   ✉️ CONTACT SECTION
============================================ */
.contact-minimal {
  background-image: url(background.jpg);
  padding: 2rem 2rem;
  text-align: center;
}

.contact-minimal h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 2rem;
}

.minimal-form {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.minimal-form input,
.minimal-form textarea {
  background: transparent;
  border: none;
  border-bottom: 2px solid #ccc;
  padding: 0.8rem 0.5rem;
  font-size: 1rem;
  color: #000;
  outline: none;
  transition: border-color 0.3s ease;
}

.minimal-form input:focus,
.minimal-form textarea:focus {
  border-bottom-color: #000;
}

.minimal-form button {
  background: #000;
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.minimal-form button:hover {
  background: #222;
}


/* ============================================
   🎁 PROMO DESCUENTO ADULTOS MAYORES CON IMAGEN
============================================ */
.promo-discount {
  padding: 3rem 1.5rem;
  background: #f8f8f8;
}

.promo-card {
  width: 100%;
  height: 350px;
  margin: auto;
  background-image: url(banner_offer.jpg);
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.promo-image {
  flex: 1 1 250px;
  max-width: 300px;
  padding-right: 2rem;
}

.promo-image img {
  width: 100%;
  margin: auto;
  border-radius: 15px;
  object-fit: cover;
}

.promo-text {
  flex: 2;
  min-width: 250px;
  z-index: 2;
}

.promo-badge {
  background-color: #ffa00a;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.3rem 0.8rem;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 0.7rem;
}

.promo-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #000;
  margin-bottom: 0.5rem;
}

.promo-text p {
  font-size: 1.1rem;
  color: #000;
  margin-bottom: 1.2rem;
}

.promo-button {

  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  font-weight: 600;
  transition: background 0.3s ease;
}

.promo-button:hover {
  background-color: #000;
  color: #fff;
}

.promo-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  color: #000;
  background-color: #fff;
  border-top-left-radius: 6px;
  z-index: 1;
}

/* ============================================
   🟨 BOTÓN "CALL NOW" / BOTONES ELEGANTES
============================================ */
.call-button {
  position: relative;
  overflow: hidden;
  padding: 0.5rem 1.5rem;
  background: #000;
  color: #fff;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

.call-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.4) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  pointer-events: none;
}

.call-button:hover::before {
  animation: sheen 1s forwards;
}

@keyframes sheen {
  0% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.share-section {
  background-color: #f7f8ff;
  padding: 3rem 2rem;
  text-align: left;
}

.share-container {
  max-width: 900px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.share-text h2 {
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 1rem;
}

.avatars {
  display: flex;
  margin-bottom: 1rem;
}

.avatars img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #ccc;
  margin-left: -10px;
}

.avatars img:first-child {
  margin-left: 0;
}

.stars {
  font-size: 1.4rem;
  color: #f8b400;
  margin-bottom: 1rem;
}

.barcode {
  width: 120px;
  height: 40px;
  background: repeating-linear-gradient(
    90deg,
    #000,
    #000 2px,
    #fff 2px,
    #fff 4px
  );
  margin-bottom: 1rem;
}

.cabin-label {
  background-color: #2d67ff;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: bold;
  font-size: 1rem;
  margin-top: 1rem;
}

/* ============================================
   📞 CALL TO ACTION BANNER
============================================ */
.call-banner {
  background-color: #000;
  padding: 3rem 1.5rem;
  color: #fff;
  background-image: url("banner.jpg");
}

.call-container {
  max-width: 1000px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.call-icon {
  font-size: 4rem;
  background: #fff;
  color: #000;
  padding: 1rem;
  border-radius: 15px;
}

.call-text h3 {
  font-size: 2rem;
  font-weight: bold;
  text-transform: uppercase;
}

.call-text h3 span {
  font-weight: 400;
}

.call-number {
  font-size: 2.5rem;
  font-weight: 900;
  margin: 0.5rem 0;
}

.call-description {
  font-size: 1rem;
  max-width: 500px;
  line-height: 1.6;
}

/* ============================================
   ⚫ FOOTER
============================================ */
.site-footer {
  background-color: #000;
  color: #fff;
  padding: 3rem 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li a {
  color: #ccc;
  text-decoration: none;
  margin-bottom: 0.5rem;
  display: block;
}

.footer-section ul li a:hover {
  color: #fff;
}

.footer-legal {
  border-top: 1px solid #444;
  padding-top: 2rem;
  font-size: 0.85rem;
  color: #aaa;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-legal ul {
  display: flex;
  gap: 1rem;
  list-style: none;
}

.footer-legal ul li a {
  color: #aaa;
  text-decoration: none;
}

.footer-legal ul li a:hover {
  color: #fff;
}




/* ============================================
   🟡 LANGUAGE SWITCH BAR
============================================ */
.language-switchus {
  width: 90%;
  text-align: left;
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

.language-switchus button {
  background: #fff;
  color: #000;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.language-switchus button:hover {
  background: #000;
  color: #fff;
}


/* ============================================
   🧭 HEADER & NAVBAR US
============================================ */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem;
    width: 50%;
      margin: auto;
  background: rgba(0, 0, 0, 0)
}

nav .logo {
  font-weight: bold;
  font-size: 1.5rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navus a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
}


nav ul.nav-linksus li a {
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s ease;
}

nav ul.nav-linksus li a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background-color: #fff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}

nav ul.nav-linksus li a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

  .nav-links-480 {
  display: none;
}

/* ============================
   US Style
============================= */
.under-section {
  width: 100%;
  height: calc(100vh - 100px); /* ajustá si la navbar ocupa más o menos */
  background: url('us.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.under-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* superposición oscura */
  display: flex;
  align-items: center;
  justify-content: center;
}

.under-wrapper {
  color: #fff;
    width: 80%;
  padding: 20%;
  margin: auto;
  max-width: 900px;
  padding: 2rem;
  font-family: 'Helvetica Neue', sans-serif;
  display: flex;
  flex-direction: column;
}

.under-header-bar {
  display: flex;
  justify-content: space-between;
  color: #ccc;
  border-bottom: 1px solid #666;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.under-quote {
  font-weight: 1400;
  margin-bottom: 1rem;
  font-size: 3rem;
  line-height: .9;
}


.under-author {
  font-size: 0.9rem;
  color: #bbb;
  margin-bottom: 2rem;
}

.under-block {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #666;
}


.under-block h2 {
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: #fff;
}

.under-block h2 span {
  font-weight: 300;
  color: #bbb;
  margin-left: 0.5rem;
}

.under-block p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ddd;
}

.under-footer-num {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: auto;
}



/* === PROMO POPUP MODAL === */
.promo-modal {
  display: none;
  position: fixed;
  z-index: 1000;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(4px);
  line-height: 1;
}

.promo-modal-content {
  margin: 5% auto;
  width: 90%;
  max-width: 700px;
  position: relative;
  animation: fadeIn 1.2s ease;
}

.promo-card {
  background-image: url(banner_offer.jpg);
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  position: relative;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.promo-image {
  flex: 1 1 250px;
  max-width: 300px;
  padding-right: 2rem;
}

.promo-image img {
  width: 100%;
  border-radius: 15px;
  object-fit: cover;
}

.promo-text {
  flex: 2;
  min-width: 250px;
  z-index: 2;

}

.promo-badge {
  background-color: #ffa00a;
  color: white;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.3rem 0.8rem;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 0.7rem;
}

.promo-text h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

.promo-text p {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 1.2rem;
}

.promo-button {
  background-color: #fff;
  color: #000;
  padding: 0.8rem 1.5rem;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s ease;
}

.promo-button:hover {
  background-color: #222;
}

.promo-deco {
  position: absolute;
  right: 0;
  bottom: 0;
  height: 6px;
  width: 100%;
  background-color: #fff;
  border-top-left-radius: 6px;
}

.close-modal {
  position: absolute;
  top: 10px;
  right: 20px;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 10;
}

.close-modal:hover{

color: #B3001B;

}

@keyframes fadeIn {
   0% {
    opacity: 0;
    transform: translateY(60px) scale(0.95);
  }
  60% {
    opacity: 0.5;
    transform: translateY(20px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }


}

/* Mobile Menu */
.menu-toggle {
  display: none;
}



@media (min-width: 768px) and (max-width: 1024px) {


/* === CONTENEDOR NAVBAR === */
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    width: 80%;
    margin: 0 auto;
    gap: 0.5rem;
  }

/* === LOGO === */
nav .logo {
  display: flex;
  align-items: rigth;
}

  .logo {
    flex-shrink: 0;
  }

/* === NAV LINKS === */
.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}

.nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: 500;
  white-space: nowrap;
}

/* === BOTÓN === */
  .call-button {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    margin-left: 1%;
    border-radius: 2rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }



/* === CONTENEDOR NAVBAR === */
  .navus {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.0);
    width: 80%;
    margin: 0 auto;
    gap: 0.5rem;
  }

/* === LOGO === */
nav .navus .logo {
  display: flex;
  align-items: rigth;
}

  .navus .logo {
    flex-shrink: 0;
  }

/* === NAV LINKS === */
.nav-linksus {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  justify-content: flex-start;
  padding: 0;
  margin: 0;
}

.nav-linksus li a {
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}

/* === BOTÓN === */
  .call-button {
    flex-shrink: 0;
    padding: 0.5rem 1rem;
    margin-left: 1%;
    border-radius: 2rem;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
  }

    .us-button {
      width: 80%;
      height: 50px;
      margin: auto;
    font-size: 1.4rem;
  }

  /* ============================================
   🚗 HERO SECTION
  ============================================ */

  .hero {
  width: 100%;
  height: auto;
  }

.hero-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 80%;
  margin: auto;
}

  .text-block {
    flex: 1;
    max-width: 50%;
  }

  .text-block h1 {
    font-size: 3.5rem;
    line-height: 1;
  }

  .text-block p {
    font-size: 1.4rem;
  }

  .car-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 50%;
  }

.car-image img {
  width: 100%;
  max-width: 700px;
  transition: transform 0.4s ease, box-shadow 0.3s ease;
}
  /* ============================
   US Style
============================= */
.under-section {
  width: 100%;
  height: calc(100vh - 100px); /* ajustá si la navbar ocupa más o menos */
  background: url('us.jpg') no-repeat center center fixed;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.under-overlay {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* superposición oscura */
  display: flex;
  align-items: center;
  justify-content: center;
}

.under-wrapper {
  color: #fff;
  width: 80%;
  padding: 20%;
  margin: auto;
  max-width: 900px;
  padding: 2rem;
  font-family: 'Helvetica Neue', sans-serif;
  display: flex;
  flex-direction: column;
}

.under-header-bar {
  display: flex;
  justify-content: space-between;
  color: #ccc;
  border-bottom: 1px solid #666;
  padding-bottom: 0.5rem;
  margin-bottom: 2rem;
}

.under-quote {
  font-weight: 1400;
  margin-bottom: 1rem;
  font-size: 5rem;
  line-height: .9;
}

.under-author {
  font-size: 2rem;
  color: #bbb;
  margin-bottom: 2rem;
}

.under-block {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #666;
}


.under-block h2 {
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
  font-weight: 600;
  color: #fff;
}

.under-block h2 span {
  font-weight: 300;
  color: #bbb;
  margin-left: 0.5rem;
}

.under-block p {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #ddd;
}

.under-footer-num {
  font-size: 0.9rem;
  color: #ccc;
  margin-top: auto;
}

/* ============================================
   🟡 Call Banner
============================================ */

.call-banner {
  background-image: url("banner-tablet.jpg");
}

/* ============================================
   🟡 LANGUAGE SWITCH BAR
============================================ */
.language-switchus {
  width: 100%;
  text-align: left;
  padding: 1rem 2rem;
  font-size: 0.9rem;
}

.language-switchus button {
  margin: auto;
  background: #fff;
  color: #000;
  border: none;
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

.language-switchus button:hover {
  background: #333;
}


/* ============================================
   🟡 Fleet Responsive
============================================ */
    .fleet-main-title {
        font-size: 2.5rem;
    }

    .fleet-description {
        font-size: 1rem;
    }

    .fleet-cards {
      width: 100%;
      margin: auto;
        gap: 1.5rem;
    }

    .fleet-item {
        max-width: 65%; /* Permitir que ocupe más ancho en pantallas pequeñas */
        flex: 1 1 90%;
    }
}


/* =============================================
   MOBILE (max-width: 480px)
============================================= */
@media (max-width: 480px) {
  /* General Reset */
  * {
    box-sizing: border-box;
  }


  html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }

   br{
    display: none;
  }

  /* Navbar */
  .navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    background-color: #fff;
    gap: 0.5rem;
  }

  .logo {
    display: none;
  }

  .logo-mobile {
    display: block;
    margin: 0 auto;
    text-align: center;
    height: 60px;
  }

  .menu-toggle {
    display: block;
    font-size: 2rem;
    color: #000;
    cursor: pointer;
    text-align: center;
    margin: 0 auto;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
  }

  .nav-links.show {
    display: flex;
  }

  /* Botones */
  .call-button {
    display: none;
  }

  .mobile-call-button {
    display: block;
    width: 80%;
    text-align: center;
    padding: 0.6rem 1.2rem;
    margin: 1rem auto 0 auto;
    border-radius: 2rem;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
  }

  .other-button {
    width: 100%;
    padding: 0.6rem 1.2rem;
    margin-top: 1rem;
    margin: auto;
    border-radius: 2rem;
    background-color: #000;
    color: #fff;
    font-weight: bold;
    text-align: center;
    font-size: 1rem;
  }

  /* Hero */
  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: -3rem;
  }

  .text-block {
    width: 100%;
    padding: 0 1rem;
  }

  .text-block h1 {
    font-size: 2.5rem;
    line-height: .9;
    margin-bottom: 0.5rem;
    font-weight: 900;
  }

  .text-block p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }

  .car-image {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 0.5rem;
  }

  .car-image img {
    max-width: 90%;
    height: auto;
  }

  /* Fleet */
  .fleet-section {
    padding: 1.5rem 1rem;
    text-align: center;
  }

  .fleet-main-title {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }

  .fleet-description {
    font-size: 0.95rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
  }

  .fleet-tagline {
    font-size: 0.75rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
  }

  .fleet-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .fleet-item-content {
    padding: 1rem;
  }

  .fleet-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.4rem;
  }

  .fleet-item p {
    font-size: 0.9rem;
    line-height: 1.4;
  }

  /* Services */
  .services-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background-color: #000;
    color: #fff;
    padding: 0;
    margin: 0;
    height: auto;
  }

  .services-intro {
    grid-column: span 2;
    text-align: center;
    padding: 1rem;
  }

  .services-intro h2 {
    font-size: 2rem;
    line-height: 1.2;
  }

  .services-line {
    margin: 0.5rem auto;
  }

   .service-number {
    display: none;
  }


  .service-slide {
    width: 100%;
    height: 400px;
    aspect-ratio: 1/1;
    position: relative;
    background-size: cover;
    background-position: center;
  }

  .service-text {
    font-size: 0.8rem;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 0.5rem;
    text-align: center;
  }

  /* Call Banner */
  .call-banner {
    background-image: url("banner-celu.jpg");
    background-size: cover;
    background-position: center;
    padding: 2rem 1rem;
    text-align: center;
    color: #fff;
  }

  .call-text h3,
  .call-text h1,
  .call-number,
  .call-description {
    font-size: 1.4rem;
    margin: 0.5rem 0;
  }

  .call-banner p{
    font-size: 1rem;
    line-height: 1.2;
  }


  /* Footer */
  .footer-content {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
    padding: 2rem 1rem;
  }

  /* WhatsApp */
  .whatsapp-mobile {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 999;
  }

.promo-modal-content {
    width: 90%;
    max-width: none;
  }

  .promo-card {
    width: 100%;
    height: 875px; /* ⬅️ deja que el contenido defina la altura */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem;
    background-image: url(banner_offer_celu.jpg);
  }

  .promo-image {
    width: 100%;
    max-width: 250px;
    margin-bottom: 1rem;
    padding: 0;
  }

  .promo-text {
    text-align: center;
    width: 90%;
  }

  .promo-button {
    width: 95%;
    display: inline-block;
    margin: 1rem auto 0 auto;
  }
}



.fecha-hora-container {
  display: flex;
  gap: 1rem;
}

.fecha-hora-container input,
.fecha-hora-container select {
  flex: 1;
  padding: 1rem;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 12px;
}