/* =========================================
   IMPORTACIÓN DE FUENTES
========================================= */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,400;0,600;0,700;0,800&display=swap");

/* =========================================
   VARIABLES Y RESET
========================================= */
:root {
  --primary-blue: #0056ff;
  --dark-navy: #0b132b;
  --text-gray: #4a5568;
  --light-gray: #cbd5e1;
  --bg-color: #f8fbff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Montserrat", sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--dark-navy);
  overflow-x: hidden;
}

/* 1. CONTENEDOR MÁS AMPLIO PARA ACERCAR A LAS ORILLAS */
.container {
  max-width: 1400px; /* Antes era 1200px */
  margin: 0 auto;
  padding: 0 40px; /* Margen de seguridad para pantallas medianas */
}

/* =========================================
   HEADER & NAVEGACIÓN
========================================= */
header {
  padding: 30px 0;
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 100; /* Aumentado para asegurar que no se bloqueen los clics */

  /* 2. PROTECCIÓN DE LECTURA: Degradado sutil para aclarar el fondo detrás del menú */
  background: linear-gradient(
    to bottom,
    rgba(248, 251, 255, 0.75) 0%,
    rgba(248, 251, 255, 0) 100%
  );
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Estilos del Logo */
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

/* Estilos del Menú */
nav ul {
  list-style: none;
  display: flex;
  gap: 35px;
}

nav a {
  text-decoration: none;
  color: var(--dark-navy);
  font-weight: 700; /* Un poco más de peso para que destaque */
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding-bottom: 5px;
  transition: color 0.3s;

  /* 3. PROTECCIÓN EXTRA DE LECTURA: Sombra de texto blanca */
  text-shadow:
    0px 0px 8px rgba(255, 255, 255, 0.9),
    0px 0px 15px rgba(255, 255, 255, 1);
}

nav a:hover {
  color: var(--primary-blue);
}

nav ul li:first-child a {
  color: var(--dark-navy);
}

nav ul li:first-child a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: var(--primary-blue);
}

/* =========================================
   HERO SECTION
========================================= */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 80px;
  overflow: hidden;
}

.hero-image-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}

.hero-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left center;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-text {
  max-width: 800px;
}

.hero-text h1 {
  font-size: 58px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--dark-navy);
  margin-bottom: 25px;
  white-space: nowrap;
}

.hero-text h1 span {
  color: var(--primary-blue);
}

.hero-text h1::after {
  content: "";
  display: block;
  width: 45px;
  height: 4px;
  background-color: var(--primary-blue);
  margin-top: 25px;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 40px;
  font-weight: 500;
}

/* --- Botón WhatsApp --- */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: var(--primary-blue);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 15px;
  transition: background-color 0.3s ease;
  margin-bottom: 70px;
}

.btn-whatsapp:hover {
  background-color: #0043cc;
}

/* --- Sección de Características (Features) --- */
.features {
  display: flex;
  align-items: center;
  gap: 40px;
}

.feature {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.feature:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 35px;
  width: 1px;
  background-color: #cbd5e1;
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-blue);
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-text {
  display: flex;
  flex-direction: column;
}

.feature-text h3 {
  font-size: 14px;
  font-weight: 800;
  color: var(--dark-navy);
  line-height: 1.2;
}

.feature-text p {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark-navy);
  line-height: 1.2;
  margin: 0;
}

/* =========================================
   SECCIÓN DE SERVICIOS
========================================= */
.services {
  padding: 100px 0;
  background-color: #ffffff; /* Fondo blanco para contrastar con el hero */
}

.services-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-header h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark-navy);
}

.services-header h2 span {
  color: var(--primary-blue);
}

.services-header p {
  color: var(--text-gray);
  margin-top: 10px;
  font-size: 16px;
}

/* Selector de Vehículos */
.car-type-selector {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 50px;
}

.car-btn {
  background-color: var(--bg-color);
  color: var(--dark-navy);
  border: 2px solid var(--light-gray);
  padding: 12px 30px;
  border-radius: 30px; /* Botones redondeados tipo píldora */
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}

.car-btn:hover {
  border-color: var(--primary-blue);
  color: var(--primary-blue);
}

.car-btn.active {
  background-color: var(--primary-blue);
  color: #ffffff;
  border-color: var(--primary-blue);
  box-shadow: 0 5px 15px rgba(0, 86, 255, 0.3);
}

/* Grilla de Tarjetas */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background-color: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

/* Tarjeta Destacada */
.featured-card {
  border: 2px solid var(--primary-blue);
  box-shadow: 0 10px 30px rgba(0, 86, 255, 0.1);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-blue);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Contenido de la Tarjeta */
.service-icon {
  width: 60px;
  height: 60px;
  background-color: var(--bg-color);
  color: var(--primary-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px auto;
}

.service-icon svg {
  width: 30px;
  height: 30px;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-gray);
  line-height: 1.6;
  margin-bottom: 25px;
  min-height: 45px; /* Mantiene la misma altura aunque el texto varíe */
}

.service-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.service-price .currency {
  font-size: 24px;
  margin-top: 8px;
  margin-right: 5px;
  color: var(--primary-blue);
}

.btn-service-whatsapp {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all 0.3s;
  background-color: var(--bg-color);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-service-whatsapp:hover {
  background-color: var(--primary-blue);
  color: #ffffff;
}

.featured-card .btn-service-whatsapp {
  background-color: var(--primary-blue);
  color: #ffffff;
}

.featured-card .btn-service-whatsapp:hover {
  background-color: #0043cc;
  border-color: #0043cc;
}

/* =========================================
   MODAL / ANUNCIO INICIAL (POP-UP)
========================================= */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(11, 19, 43, 0.85); /* Fondo oscuro semitransparente */
  z-index: 1000; /* Asegura que esté por encima de todo */
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.4s ease,
    visibility 0.4s ease;
}

/* Clase que se agrega con JS para mostrar el modal */
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: #ffffff;
  border-radius: 16px;
  width: 90%;
  max-width: 450px;
  position: relative;
  /* BORRA O COMENTA ESTA LÍNEA: overflow: hidden; */
  transform: translateY(30px) scale(0.95);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-content {
  transform: translateY(0) scale(1); /* Efecto de rebote suave al entrar */
}

/* Botón de cerrar (X) */
.modal-close {
  position: absolute;
  top: -15px; /* Lo sube fuera de la caja */
  right: -15px; /* Lo mueve a la derecha fuera de la caja */
  background: #ffffff;
  border: none;
  font-size: 24px;
  line-height: 1;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  cursor: pointer;
  color: var(--dark-navy);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3); /* Sombra más fuerte */
  transition:
    background 0.3s,
    color 0.3s;
}

.modal-close:hover {
  background: var(--primary-blue);
  color: #fff;
}

/* Espacio temporal para la imagen */
.modal-image-placeholder {
  width: 100%;
  height: 300px;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--text-gray);
  font-size: 16px;
  font-weight: 700;
}

.modal-body {
  padding: 30px;
  text-align: center;
}

.modal-body h3 {
  font-size: 24px;
  color: var(--dark-navy);
  margin-bottom: 10px;
  font-weight: 800;
}

.modal-body p {
  color: var(--text-gray);
  font-size: 15px;
  margin-bottom: 25px;
  line-height: 1.5;
}

/* =========================================
   SECCIÓN DE PROMOCIONES (MOSAICO)
========================================= */
.promos {
  padding: 100px 0;
  background-color: var(--bg-color); /* Un azul muy clarito */
}

/* Grilla provista por el usuario con pequeños ajustes visuales */
.promo-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(7, 1fr);
  gap: 15px; /* Espacio entre las tarjetas */
  min-height: 800px; /* Altura del mosaico para que funcionen las proporciones */
  max-width: 1200px;
  margin: 0 auto;
}

/* Áreas de la grilla */
.div1 {
  grid-area: 1 / 1 / 4 / 4;
}
.div2 {
  grid-area: 1 / 4 / 4 / 7;
}
.div3 {
  grid-area: 4 / 1 / 6 / 3;
}
.div4 {
  grid-area: 4 / 3 / 6 / 7;
}
.div5 {
  grid-area: 6 / 1 / 8 / 5;
} /* Promo 6 (Premium) va aquí porque es ancha */
.div6 {
  grid-area: 6 / 5 / 8 / 7;
}

/* Diseño interno de las Tarjetas */
.promo-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background-color: #1e293b; /* Color por defecto por si no hay imagen */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end; /* Manda el texto hacia abajo */
  padding: 30px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.promo-card:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  z-index: 5;
}

/* Filtro oscuro para que las letras blancas resalten sobre tus fotos */
.promo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to top,
    rgba(11, 19, 43, 0.95) 10%,
    rgba(11, 19, 43, 0.4) 60%,
    rgba(11, 19, 43, 0.1) 100%
  );
  z-index: 1;
}

/* Un azul más vivo para la promo premium */
.premium-overlay {
  background: linear-gradient(
    to top,
    rgba(0, 86, 255, 0.95) 10%,
    rgba(11, 19, 43, 0.6) 80%
  );
}

.promo-content {
  position: relative;
  z-index: 2;
  color: #ffffff;
  width: 100%;
}

.promo-content h3 {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.1;
}

.promo-content p {
  font-size: 14px;
  color: #e2e8f0;
  margin-bottom: 15px;
}

/* Textos pequeños para la tarjeta 6 que tiene mucha info */
.promo-content p.small-text {
  font-size: 13px;
  margin-bottom: 10px;
  line-height: 1.4;
}
.promo-content p.extra-notes {
  font-size: 11px;
  color: #cbd5e1;
  font-style: italic;
}

.badge-recomendado {
  display: inline-block;
  background: #ffc107;
  color: #000;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 10px;
}

.promo-price {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.promo-price .currency {
  font-size: 20px;
  margin-right: 5px;
  margin-top: 5px;
}
.promo-price .mes {
  font-size: 14px;
  font-weight: 500;
  color: #cbd5e1;
  margin-left: 5px;
  margin-top: 10px;
}

.btn-promo-whatsapp {
  display: inline-block;
  background-color: var(--primary-blue);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 25px;
  border-radius: 6px;
  transition: background 0.3s;
}

.btn-promo-whatsapp:hover {
  background-color: #0043cc;
}

/* Para la premium el botón es blanco */
.premium-card .btn-promo-whatsapp {
  background-color: #ffffff;
  color: var(--primary-blue);
}
.premium-card .btn-promo-whatsapp:hover {
  background-color: #f1f5f9;
}

/* =========================================
   ADAPTACIÓN PARA CELULARES (¡MUY IMPORTANTE!)
========================================= */
@media (max-width: 900px) {
  .promo-grid {
    display: flex; /* Rompe el grid en pantallas pequeñas */
    flex-direction: column;
    min-height: auto;
  }
  .promo-card {
    min-height: 300px;
  }
}

html {
  scroll-behavior: smooth;
}

/* =========================================
   SECCIÓN NOSOTROS (SOBRE MÍ)
========================================= */
.about {
  padding: 100px 0;
  background-color: var(--bg-color); /* Fondo blanco limpio */
  position: relative;
  overflow: hidden;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  max-width: 1100px;
  margin: 0 auto;
}

/* --- Columna de la Imagen --- */
.about-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Cuadro azul de fondo para dar estilo moderno */
.image-backdrop {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 100%;
  background-color: var(--primary-blue);
  border-radius: 16px;
  z-index: 1;
}

.my-photo-placeholder {
  width: 100%;
  height: 500px;
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  border-radius: 16px;
  position: relative;
  z-index: 2; /* Para que quede encima del fondo azul */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: var(--text-gray);
  font-weight: 700;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

/* Estilo para tu foto real cuando la subas */
.my-photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- Columna de Texto --- */
.about-badge {
  display: inline-block;
  background-color: rgba(0, 86, 255, 0.1);
  color: var(--primary-blue);
  font-size: 13px;
  font-weight: 800;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.about-text h2 {
  font-size: 40px;
  font-weight: 800;
  color: var(--dark-navy);
  margin-bottom: 25px;
  line-height: 1.1;
}

.about-text h2 span {
  color: var(--primary-blue);
}

.about-intro {
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-navy);
  margin-bottom: 20px;
  line-height: 1.5;
}

.about-text p {
  font-size: 15px;
  color: var(--text-gray);
  margin-bottom: 15px;
  line-height: 1.7;
}

/* Cuadro de frase destacada */
.about-quote {
  margin-top: 30px;
  margin-bottom: 35px;
  padding-left: 20px;
  border-left: 4px solid var(--primary-blue);
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
  color: var(--dark-navy);
  background: linear-gradient(to right, rgba(0, 86, 255, 0.05), transparent);
  padding: 15px 15px 15px 20px;
  border-radius: 0 8px 8px 0;
}

.about-btn {
  margin-bottom: 0; /* Resetea el margen que tenía en el hero */
  box-shadow: 0 10px 20px rgba(0, 86, 255, 0.2);
}

/* =========================================
   ADAPTACIÓN PARA CELULARES
========================================= */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr; /* Una sola columna en teléfonos */
    gap: 40px;
  }

  .my-photo-placeholder {
    height: 400px;
  }

  .about-text {
    text-align: center;
  }

  .about-quote {
    text-align: left; /* Mantiene la frase legible */
  }
}

/* =========================================
   SECCIÓN ANTES Y DESPUÉS (NUESTRO TRABAJO)
========================================= */
.before-after {
  padding: 100px 0;
  background-color: #ffffff;
}

.ba-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.ba-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

.ba-placeholder {
  background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
  height: 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  color: var(--text-gray);
  text-align: center;
  padding: 30px;
}

/* El cuadro de "Después" lo hacemos un poco más azulado para diferenciarlo */
.after-placeholder {
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  color: var(--primary-blue);
}

.ba-label {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--dark-navy);
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 6px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 1px;
}

.after-label {
  background-color: var(--primary-blue);
}

.ba-icon {
  margin-bottom: 15px;
}

.ba-icon svg {
  width: 50px;
  height: 50px;
  opacity: 0.5;
}

.ba-placeholder p {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
}

/* Textos para convencer abajo de las fotos */
.ba-cta {
  position: relative;
  text-align: center;
  margin-top: 60px;
  border-radius: 16px;
  overflow: hidden;
  background-color: var(--dark-navy); /* Color de respaldo */
  background-size: cover;
  background-position: center;
  padding: 60px 40px; /* Más espacio para lucir la imagen */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Filtro degradado para asegurar que el texto siempre se lea */
.ba-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to right,
    rgba(11, 19, 43, 0.9),
    rgba(0, 86, 255, 0.7)
  );
  z-index: 1;
}

.ba-cta-content {
  position: relative;
  z-index: 2; /* Asegura que el texto y botón queden arriba del filtro */
  color: #ffffff;
}

.ba-cta-content h3 {
  font-size: 28px;
  color: #ffffff;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.2;
}

.ba-cta-content p {
  font-size: 16px;
  color: #e2e8f0; /* Gris muy claro */
  margin-bottom: 30px;
  max-width: 600px; /* Evita que el texto sea muy largo en PC */
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Botón Blanco para que resalte sobre el fondo oscuro de la imagen */
.btn-cta-inverse {
  background-color: #ffffff;
  color: var(--dark-navy);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  margin-bottom: 0;
}

.btn-cta-inverse:hover {
  background-color: #f8fbff;
  color: var(--primary-blue);
  transform: translateY(-2px);
}

/* Adaptación al celular para el CTA */
@media (max-width: 768px) {
  .ba-cta {
    padding: 40px 20px;
  }
  .ba-cta-content h3 {
    font-size: 22px;
  }
}

/* =========================================
   ADAPTACIÓN PARA CELULARES
========================================= */
@media (max-width: 768px) {
  .ba-grid {
    grid-template-columns: 1fr; /* Una foto arriba de otra en móvil */
    gap: 20px;
  }

  .ba-placeholder {
    height: 250px; /* Un poco más bajitas en el celular */
  }

  .ba-cta {
    padding: 30px 20px;
  }
}

/* =========================================
   FOOTER / CONTACTO
========================================= */
.footer {
  background-color: var(--dark-navy);
  color: #ffffff;
  padding-top: 80px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Línea divisoria sutil */
}

/* Logo en el Footer */
.footer-info h2 {
  font-size: 24px;
  font-weight: 800;
  font-style: italic;
  margin-bottom: 15px;
  letter-spacing: -0.5px;
}

.footer-info h2 span {
  color: var(--primary-blue);
}

.footer-info p {
  color: #94a3b8; /* Gris azulado oscuro */
  font-size: 15px;
  line-height: 1.6;
}

/* Área de Datos de Contacto */
.footer-contact h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 25px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

/* Círculos azules para los íconos */
.contact-icon {
  background-color: rgba(0, 86, 255, 0.15);
  color: var(--primary-blue);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item p {
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.5;
  margin: 0;
}

.contact-item strong {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
}

/* Franja de abajo (Copyright) */
.footer-bottom {
  text-align: center;
  padding: 25px 0;
  background-color: #070c1d; /* Un tono aún más oscuro que el dark-navy */
}

.footer-bottom p {
  color: #64748b;
  font-size: 13px;
  margin: 0;
}

/* --- Nueva Columna: Formas de Lavado --- */
.footer-methods h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.methods-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 300px; /* Evita que el texto se estire mucho */
}

.methods-list li {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

/* Circulito azul para los números */
.methods-list li span {
    background-color: var(--primary-blue);
    color: #ffffff;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 12px;
    font-weight: 800;
    flex-shrink: 0;
    margin-top: 2px;
}

/* =========================================
   ADAPTACIÓN PARA CELULARES
========================================= */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-item {
    justify-content: center;
    text-align: center;
  }
}

/* Ocultamos el botón hamburguesa en computadoras */
.menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: var(--dark-navy);
  cursor: pointer;
  z-index: 200; /* Asegura que el botón siempre esté arriba */
}

/* =========================================
   ADAPTACIÓN PARA CELULARES (HEADER Y HERO)
========================================= */
@media (max-width: 991px) {
  /* 1. Mostrar el botón hamburguesa */
  .menu-toggle {
    display: block;
  }

  /* 2. Convertir el menú en una lista vertical oculta */
  #navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%); /* Lo esconde hacia arriba */
    transition: transform 0.3s ease;
    z-index: 100;
    opacity: 0;
  }

  /* Clase que se activa con JS para mostrar el menú */
  #navbar.active {
    transform: translateY(0);
    opacity: 1;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    text-align: center;
  }

  nav a {
    display: block;
    padding: 20px;
    border-bottom: 1px solid var(--light-gray);
    text-shadow: none; /* Quitamos la sombra porque el fondo ya es blanco */
  }

  nav ul li:first-child a::after {
    display: none; /* Quitamos la rayita azul del primer link */
  }

  /* 3. Ajustes del Hero (Inicio) para celular */
  .hero {
    padding-top: 130px; /* Más espacio para que el menú no tape */
    text-align: center; /* Centramos todo */
  }

  .hero-text h1 {
    font-size: 40px; /* Letra un poco más pequeña */
    white-space: normal; /* Permite que el texto se rompa en varias líneas */
  }

  .hero-text h1::after {
    margin: 20px auto; /* Centramos la rayita azul */
  }

  /* Convertimos la imagen del carro en una "marca de agua" de fondo */
  .hero-image-bg {
    width: 100%;
    opacity: 0.15; /* Muy transparente para no estorbar la lectura */
    -webkit-mask-image: none;
    mask-image: none;
  }

  .btn-whatsapp {
    margin-bottom: 40px;
  }

  /* 4. Apilamos las características (Gotita, Escudito, etc.) */
  .features {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .feature {
    padding-right: 0;
  }

  .feature:not(:last-child)::after {
    display: none; /* Quitamos las rayitas separadoras */
  }
}
