/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Alata", sans-serif;
  font-weight: 400;
  font-style: normal;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.resaltar {
    background-color: yellow;
    padding: 0 3px;
    border-radius: 3px;
}

/* 🔶 SECCIÓN PAQUETES */
.paquetes-section {
  background-color: #ff7b00; /* naranja vibrante */
  padding: 60px 20px;
  text-align: center;
  color: #fff;
}

.paquetes-section h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.paquetes-subtitle {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

/* 📦 CONTENEDOR DE CARDS */
.paquetes-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

/* 📦 CARD */
.paquete-card {
  background: #fff;
  color: #333;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0px 5px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paquete-card:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 20px rgba(0,0,0,0.25);
}

/* 🖼️ IMAGEN EN LA CARD */
.paquete-img img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 15px;
}

/* 🔘 BOTÓN */
.btn-paquete {
  display: inline-block;
  background: #ff7b00;
  color: #fff;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-paquete:hover {
  background: #e66d00;
}

/* 🔘 BOTÓN RESERVAR DE PAQUETES */
.btn-paquete {
  display: inline-block;
  background: #ff4d00;          /* naranja más intenso */
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;

  /* ✨ EFECTO BRILLO */
  box-shadow: 0 0 10px rgba(255, 77, 0, 0.8),
              0 0 20px rgba(255, 77, 0, 0.6);

  transition: all 0.3s ease;
}

/* 🔸 Link "Paquetes" con glow naranja fuerte */
.nav-link-paquetes {
  color: #ff7b00; 
  text-shadow: 0 0 8px rgba(255, 123, 0, 0.9), 0 0 12px rgba(255, 123, 0, 0.7);
  transition: text-shadow 0.3s ease;
  text-decoration: none;
}

/* 🔥 Glow aún más potente al hover */
.nav-link-paquetes:hover {
  text-shadow: 0 0 12px rgba(255, 123, 0, 1), 0 0 20px rgba(255, 123, 0, 0.9);
}



.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
}

.logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #2E4AFF;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #2E4AFF;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


.whatsapp-link {
  color: #25D366;          /* Verde WhatsApp */
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  display: inline-block;
}

.whatsapp-link:hover {
  color: #128C7E;          /* Verde más oscuro */
  transform: scale(1.1);   /* Aumenta un poco */
  text-shadow: 0 0 8px rgba(37, 211, 102, 0.6);
}

.whatsapp-btn {
    background: #25d366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    /* 🔥 Glow verde agregado */
    box-shadow: 0 0 10px rgba(37, 211, 102, 0.7),
                0 0 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    /* 🔥 Glow más intenso en hover */
    box-shadow: 0 0 12px rgba(37, 211, 102, 0.9),
                0 0 24px rgba(37, 211, 102, 0.7);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}



/* 🌐 GENERAL RESETS */
* {
  box-sizing: border-box;
}

/* 🔍 CONTENEDOR DEL BUSCADOR */
.buscador-container {

  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.3);
  padding: 10px;
  border-radius: 12px;
  backdrop-filter: blur(6px);
  margin: 20px auto;
  max-width: 700px;
  flex-wrap: wrap; /* para que se acomode en varias líneas en pantallas chicas */
}

.buscador-container input,
.buscador-container select {
  font-family: "Alata", sans-serif;
  font-weight: 400;
  font-style: normal;
  padding: 12px;
  border-radius: 10px;
  border: none;
  outline: none;
  width: 250px;
  font-size: 16px;
}


.buscador-container button {
  font-family: "Alata", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  padding: 12px 20px;
  background: #065dcf;
  background: linear-gradient(90deg, rgba(6, 93, 207, 1) 0%, rgba(47, 152, 245, 1) 100%);
  font-weight: bold;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}

.buscador-container button:hover {
  background: #5DAEF5;
background: linear-gradient(90deg, rgba(93, 174, 245, 1) 0%, rgba(5, 130, 240, 1) 100%);
}

/* 📲 RESPONSIVE para buscador */
@media (max-width: 600px) {
  .buscador-container {
    flex-direction: column;
    gap: 8px;
    max-width: 95%;
  }
  .buscador-container input,
  .buscador-container select,
  .buscador-container button {
    width: 100%;
  }
}


/*COMENTARIOS GOOGLE*/



/*FIN COMENTARIOS GOOGLE*/



/*contenido servicio*/
.service-info-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  background: #fff; /* fondo blanco */
  padding: 12px 20px;
  border-radius: 8px;
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #555; /* texto gris oscuro */
  box-sizing: border-box;
  margin-top: 16px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  gap: 12px;
  max-width: 100%;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-weight: 500;
  color: #555;
  min-width: 130px;
  flex-grow: 1;
  max-width: 180px;
}

.info-item.precio {
  color: #e67e22; /* naranja para precio */
  font-weight: 700;
  justify-content: flex-end;
  min-width: 130px;
  max-width: 180px;
}

.icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  flex-shrink: 0;
  filter: grayscale(70%) brightness(90%);
}


/* 🟠 FRANJA NARANJA DE “CONTÁCTANOS” */
.contactanos-section {
background: #2ddbfa;
background: linear-gradient(90deg, rgba(45, 219, 250, 0.58) 0%, rgba(30, 146, 247, 0.73) 100%);
  padding: 40px 20px;
  text-align: center;
  border-radius: 12px;
  max-width: 800px;
  margin: 40px auto;
  color: #fff;
  backdrop-filter: blur(4px);
}

.contactanos-container h2 {
  font-size: 20px;
  margin-bottom: 10px;
}

.contactanos-container p {
  font-size: 18px;
  margin-bottom: 20px;
}

/* 📲 RESPONSIVE para franja naranja */
@media (max-width: 600px) {
  .contactanos-container h2 { font-size: 22px; }
  .contactanos-container p { font-size: 16px; }
}



/* Fondo modal */
.modal {
  display: none; /* Oculto por defecto */
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  animation: fadeIn 0.3s ease forwards;
}

/* Contenido modal */
.modal-content {
  background: #fff;
  border-radius: 10px;
  padding: 25px 30px;
  width: 90%;
  max-width: 420px;
  margin: 8% auto;
  position: relative;
  box-shadow: 0 10px 25px rgba(0,0,0,0.3);
  transform: translateY(-30px);
  opacity: 0;
  animation: slideIn 0.35s ease forwards;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Animación contenido */
@keyframes slideIn {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Animación fondo */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

/* Cerrar botón */
.cerrar {
  position: absolute;
  top: 12px; right: 15px;
  font-size: 28px;
  font-weight: bold;
  color: #888;
  cursor: pointer;
  transition: color 0.3s ease;
  user-select: none;
}

.cerrar:hover {
  color: #ff7f00;
  transform: rotate(90deg);
}

/* Títulos */
.modal-content h2 {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.5rem;
  color: #333;
}

.modal-content h2 span {
  color: #0357D5;
  text-shadow: 2px 2px 13px rgba(0,110,255,0.42), 2px 2px 13px rgba(0,110,255,0.42);
}

/* Formulario */
form label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #444;
  font-size: 0.9rem;
}

form input[type="number"],
form input[type="date"] {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 18px;
  border: 1.8px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline-offset: 2px;
}

form input[type="number"]:focus,
form input[type="date"]:focus {
  border-color: #ff7f00;
  box-shadow: 0 0 6px #ff7f00aa;
}


/*FILTRO*/

.filter-buttons {
    text-align: center;
    margin-bottom: 20px;
}
.filter-btn {
  font-family: "Alata", sans-serif;
  font-weight: 400;
  font-style: normal;
    background: #eee;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}
.filter-btn.active,
.filter-btn:hover {
    background: #123dff;
background: linear-gradient(90deg, rgba(18, 61, 255, 1) 0%, rgba(51, 133, 255, 1) 100%);;
    color: white;
}
.service-card {
    opacity: 1;
    transition: opacity 0.3s ease;
}
.fade-in {
    opacity: 1 !important;
}
.fade-out {
    opacity: 0 !important;
}

/* Botón enviar */
form button {
  background: #2a57fa;
background: linear-gradient(90deg, rgba(42, 87, 250, 1) 0%, rgba(5, 130, 240, 1) 100%);
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.15s ease;
  box-shadow: 2px 2px 17px rgba(6,93,207,0.57), 2px 2px 17px rgba(6,93,207,0.57);
}

form button:hover {
  background-color: #ff9900;
  box-shadow: 2px 2px 17px rgba(6,93,207,0.57), 2px 2px 17px rgba(6,93,207,0.57);
  transform: scale(1.05);
}

form button:active {
  transform: scale(0.95);
  box-shadow: 2px 2px 17px rgba(6,93,207,0.57), 2px 2px 17px rgba(6,93,207,0.57), 2px 2px 17px rgba(6,93,207,0.57), 2px 2px 17px rgba(6,93,207,0.57);
}


.btn-reservar {
  background: #1748FC;
  border: none;
  border-radius: 12px; /* bordes redondeados */
  padding: 14px 28px;
  color: white;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 2px 2px 13px rgba(79,82,81,0.57), 2px 2px 13px rgba(79,82,81,0.42); /* sombra suave */
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.btn-reservar:hover {
  background: #3863FF; 
 box-shadow: 2px 2px 13px rgba(79,82,81,0.57), 2px 2px 13px rgba(79,82,81,0.42);
  transform: scale(1.05); /* ligera animación de tamaño */
}

/* ✅ BOTÓN WHATSAPP CON GLOW */
.btn-whatsapp-glow {
  display: inline-block;
  padding: 14px 30px;
  background: #25D366;
  color: white;
  font-size: 18px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.8);
  transition: all 0.3s ease;
  position: relative;
}

/* Hover y click */
.btn-whatsapp-glow:hover {
  background: #1ebe5d;
  box-shadow: 0 0 25px rgba(37, 211, 102, 1);
}

.btn-whatsapp-glow:active {
  transform: scale(0.95);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.8);
}

/* Latido opcional */
.btn-whatsapp-glow {
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); box-shadow: 0 0 15px rgba(37, 211, 102, 0.8); }
  50% { transform: scale(1.05); box-shadow: 0 0 25px rgba(37, 211, 102, 1); }
  100% { transform: scale(1); box-shadow: 0 0 15px rgba(37, 211, 102, 0.8); }
}

/* 📲 RESPONSIVE botón WhatsApp */
@media (max-width: 600px) {
  .btn-whatsapp-glow {
    width: 90%;
    text-align: center;
    font-size: 16px;
  }
}


/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2ddbfa;
background: linear-gradient(90deg, rgba(45, 219, 250, 0.37) 1%, rgba(30, 146, 247, 0.47) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
   font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.feature i {
    font-size: 2rem;
    color: #ff6b35;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.cta-button:hover {
    background: #128c7e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: #2a8ff5;
background: linear-gradient(90deg,rgba(42, 143, 245, 1) 1%, rgba(30, 193, 247, 1) 100%);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}


/* ===== Quines Somos Section ===== */

.about {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  flex-wrap: wrap; /* ✅ permite que los elementos se acomoden en pantallas pequeñas */
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease;
}

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

.about-content {
  background: rgba(255, 255, 255, 0.9);
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  text-align: center; 
  max-width: 550px;
  border: none; /* ❌ sin borde */
}

/* 🔠 Título con línea naranja */
.about-content h2 {
  font-size: 2.2rem;
  margin-bottom: 15px;
  color: #000; 
  position: relative;
  padding-bottom: 10px;
  display: inline-block;
}

.about-content h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #2a8ff5;
background: linear-gradient(90deg, rgba(42, 143, 245, 1) 1%, rgba(30, 193, 247, 1) 100%);ç
  margin: 8px auto 0 auto;
  border-radius: 2px;
}

/* 📱 ✅ RESPONSIVE AJUSTES PARA TABLETS Y CELULARES */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column; /* pasa a columna en tablets */
    text-align: center;
  }

  .about-image img {
    max-width: 400px;
  }

  .about-content {
    max-width: 90%; /* ocupa casi todo el ancho */
  }
}

@media (max-width: 576px) {
  .about {
    padding: 50px 0;
  }

  .about-image img {
    max-width: 300px;
  }

  .about-content h2 {
    font-size: 1.8rem; /* título más chico en móvil */
  }

  .about-content {
    padding: 20px;
  }
}





.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.service-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: #666;
    margin-bottom: 1rem;
}

.service-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #25d366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-btn:hover {
    background: #2E4AFF;
    transform: translateY(-2px);
}

/* Coverage Section */
.coverage {
    padding: 5rem 0;
    background: white;
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.coverage-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.coverage-item:hover {
    background: #1874ED;
    color: white;
    transform: translateY(-5px);
}

.coverage-icon {
    font-size: 3rem;
    color: #2E4AFF;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
}

.coverage-item:hover .coverage-icon {
    color: white;
}

.coverage-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Vehicle Section */
.vehicle {
    padding: 5rem 0;
    background: #f8f9fa;
}

.vehicle-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vehicle-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vehicle {
  padding: 80px 0;
  background-color: #f8f8f8;
}

.vehicle-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  flex-wrap: wrap; /* ✅ para que sea responsive */
}

.vehicle-image {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.vehicle-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(0, 0, 0, 0.4); /* ✅ Sombra en la imagen */
}


.vehicle-image {
  position: relative;
  width: 100%;
  max-width: 500px;
}

.vehicle-image img {
  width: 100%;
  border-radius: 10px;
}

.vehicle-text {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  padding: 5px 10px;
  border-radius: 6px;
}

/* 🔥 Texto flotante animado */
.vehicle-text {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 10px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.5);
  animation: floatText 2.5s ease-in-out infinite; /* ✨ Animación de flotación */
}

/* 🎬 Animación de “sube y baja” */
@keyframes floatText {
  0%, 100% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, -8px);
  }
}

/* 🔠 Estilo del título */
.vehicle-info h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 1rem;
}

/* 📝 Estilo del párrafo */
.vehicle-info p {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 2rem;
}

/* 📋 Lista de características */
.vehicle-features {
  list-style: none;
  padding: 0;
}

.vehicle-features li {
  font-size: 1rem;
  color: #333;
  margin-bottom: 10px;
}

.vehicle-features i {
  color: #25d366; /* icono verde tipo WhatsApp */
  margin-right: 8px;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {
  .vehicle-content {
    flex-direction: column;
    text-align: center;
  }

  .vehicle-text {
    font-size: 1.2rem;
    padding: 8px 16px;
  }

  .vehicle-info h2 {
    font-size: 2rem;
  }
}


.vehicle-features {
    list-style: none;
}

.vehicle-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.vehicle-features i {
    color: #25d366;
}

/* Payment Section */
.payment {
    padding: 5rem 0;
    background: white;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.payment-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem;
    border-radius: 15px;
    background: #f8f9fa;
    transition: all 0.3s ease;
}

.payment-item:hover {
    background: #055CFC;
    color: white;
    transform: translateY(-5px);
}

.payment-item i {
    font-size: 2.5rem;
    color: #055CFC;
    transition: color 0.3s ease;
}

.payment-item:hover i {
    color: white;
}

.payment-logo {
    height: 40px;
    object-fit: contain;
}

.payment-note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
    font-style: italic;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: #f8f9fa;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #055CFC;
    margin-top: 0.2rem;
}

.contact-item strong {
    display: block;
    color: #333;
    margin-bottom: 0.2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #055CFC;
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #055CFC;
    transform: translateY(-3px);
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.submit-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem;
    background: #ff6b35;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
}

/* Footer */
/* Animación de luces */
@keyframes lights {
  0% {
    color: hsl(230, 40%, 80%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.2),
      0 0 0.125em hsla(320, 100%, 60%, 0.3),
      -1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
      1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }
  
  30% { 
    color: hsl(230, 80%, 90%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.5),
      0 0 0.125em hsla(320, 100%, 60%, 0.5),
      -0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
      0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
  }
  
  40% { 
    color: hsl(230, 100%, 95%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.5),
      0 0 0.125em hsla(320, 100%, 90%, 0.5),
      -0.25em -0.125em 0.125em hsla(40, 100%, 60%, 0.2),
      0.25em 0.125em 0.125em hsla(200, 100%, 60%, 0.4);
  }
  
  70% {
    color: hsl(230, 80%, 90%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.5),
      0 0 0.125em hsla(320, 100%, 60%, 0.5),
      0.5em -0.125em 0.25em hsla(40, 100%, 60%, 0.2),
      -0.5em 0.125em 0.25em hsla(200, 100%, 60%, 0.4);
  }
  
  100% {
    color: hsl(230, 40%, 80%);
    text-shadow:
      0 0 1em hsla(320, 100%, 50%, 0.2),
      0 0 0.125em hsla(320, 100%, 60%, 0.3),
      1em -0.125em 0.5em hsla(40, 100%, 60%, 0),
      -1em 0.125em 0.5em hsla(200, 100%, 60%, 0);
  }
}

/* Footer */
.footer {
  background: #1f1f1f;
background: linear-gradient(90deg, rgba(31, 31, 31, 1) 0%, rgba(77, 77, 77, 1) 100%);
  padding: 2rem 0;
  text-align: center;
  font-family: "Encode Sans SC", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/* Aplicar animación al texto dentro del footer */
.footer p2, 
.footer a {
  animation: lights 3s infinite;
}


.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 1rem;
}




.footer-logo i {
    margin-right: 0.5rem;
    font-size: 2rem;
}

.footer p2 {
    margin-bottom: 0.5rem;
}

.footer a {
    color: #35F2FF;
    text-decoration: none;
    font-weight: 700; /* más negrita */
}

.footer a:hover {
    text-decoration: underline;
}

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background: #128c7e;
    transform: scale(1.1);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .vehicle-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .coverage-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .payment-grid {
        grid-template-columns: 1fr;
    }
}