 /* ============================================================================
   LIMACAR.PE - ESTILOS PRINCIPALES
   Sistema de estilos para la página principal de LimaCar
   ============================================================================ */

 /* ============================================================================
   1. RESET Y ESTILOS BASE
   ============================================================================ */
 * {
   margin: 0;
   padding: 0;
   box-sizing: border-box;
 }

 body {
   font-family: Arial, sans-serif;
   color: #333;
 }

 /* ============================================================================
   2. BARRA SUPERIOR (TOP BAR)
   ============================================================================ */
 .top-bar {
   background: #333;
   color: white;
   padding: 0.6rem 5%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   font-size: 0.9rem;
   flex-wrap: wrap;
 }

 .top-bar-left {
   display: flex;
   gap: 2.5rem;
   align-items: center;
   flex-wrap: wrap;
 }

 .top-bar__item {
   display: flex;
   align-items: center;
   gap: 0.6rem;
 }

 .top-bar__item i {
   color: #014bae;
   font-size: 0.9rem;
 }

 .top-bar__link {
   color: white;
   text-decoration: none;
   font-size: 0.9rem;
 }

 /* Iconos sociales en top bar */
 .social-icons {
   display: flex;
   gap: 0.6rem;
 }

 .social-icons a {
   width: 38px;
   height: 38px;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
   text-decoration: none;
   transition: transform 0.2s;
   font-size: 1rem;
   background: #014bae;
 }

 .social-icons a:hover {
   transform: scale(1.05);
 }

 /* ============================================================================
   3. HEADER Y NAVEGACIÓN PRINCIPAL
   ============================================================================ */
 header {
   background: white;
   padding: 1.2rem 5%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
 }

 .logo img {
   height: 90px;
   width: auto;
   object-fit: contain;
 }

 /* Navegación desktop */
 nav {
   display: flex;
   gap: 2.5rem;
   align-items: center;
 }

 nav a {
   text-decoration: none;
   color: #333;
   font-weight: 600;
   font-size: 1.05rem;
   transition: color 0.3s;
 }

 nav a:hover {
   color: #014bae;
 }

 nav a.inicio-btn {
   background: #1a1a1a;
   color: white;
   padding: 0.7rem 2rem;
   border-radius: 30px;
   font-weight: 600;
   white-space: nowrap;
 }

 nav a.inicio-btn:hover {
   background: #333;
 }

 /* Botón toggle menú móvil */
 .menu-toggle {
   display: none;
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background: #014bae;
   color: white;
   border: none;
   cursor: pointer;
   font-size: 1.3rem;
   align-items: center;
   justify-content: center;
 }

 /* ============================================================================
   4. MENÚ MÓVIL
   Sistema de navegación para dispositivos móviles con overlay
   ============================================================================ */
 .mobile-menu {
   position: fixed;
   top: 0;
   left: -100%;
   width: 85%;
   max-width: 400px;
   height: 100vh;
   background: linear-gradient(135deg, #014bae 0%, #012a6b 100%);
   z-index: 9999;
   transition: left 0.3s;
   padding: 2rem 1.5rem;
   overflow-y: auto;
 }

 .mobile-menu.active {
   left: 0;
   display: block;
 }

 .mobile-menu-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 3rem;
 }

 .mobile-menu-logo {
   color: white;
   font-size: 2rem;
   font-weight: bold;
 }


 .mobile-menu-close {
   background: white;
   color: #014bae;
   border: none;
   width: 45px;
   height: 45px;
   border-radius: 50%;
   cursor: pointer;
   font-size: 1.8rem;
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .mobile-menu-button {
   background: rgba(255, 255, 255, 0.15);
   border: none;
   padding: 1.2rem 1.5rem;
   border-radius: 15px;
   margin-bottom: 1rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   cursor: pointer;
   transition: all 0.3s;
   text-decoration: none;
   color: white;
 }

 .mobile-menu-button:hover {
   background: rgba(255, 255, 255, 0.25);
   transform: translateX(5px);
 }

 .mobile-menu-button-content {
   display: flex;
   align-items: center;
   gap: 1rem;
 }

 .mobile-menu-icon {
   width: 50px;
   height: 50px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 1.5rem;
   color: white;
 }

 .mobile-menu-icon.black {
   background: #1a1a1a;
 }

 .mobile-menu-icon.blue {
   background: #003580;
 }

 .mobile-menu-button span {
   font-size: 1.1rem;
   font-weight: 600;
 }

 .mobile-menu-arrow {
   color: white;
   font-size: 1.2rem;
   opacity: 0.7;
 }

 /* Overlay oscuro para menú móvil */
 .menu-overlay {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.6);
   z-index: 9998;
 }

 .menu-overlay.active {
   display: block;
 }

 /* ============================================================================
   5. HERO SLIDER
   Slider principal con contenido de llamada a la acción
   ============================================================================ */

 /* Contenedor con fondo semitransparente para contenido del hero */
 .hero-content-box {
   background: rgba(255, 255, 255, 0.61);
   backdrop-filter: blur(0px);
   -webkit-backdrop-filter: blur(20px);
   border: 1px solid rgba(255, 255, 255, 0.4);
   border-radius: 20px;
   padding: 3rem 4rem;
   box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
   max-width: 900px;
   margin: 0 auto;
 }

 .hero-content-box .text-display {
   color: #2c3e50;
   font-weight: 700;
   margin-bottom: 2rem;
 }

 /* Botones CTA del hero */
 .hero-cta-btn {
   background: rgba(52, 58, 64, 0.95);
   color: white;
   padding: 1.2rem 3rem;
   border-radius: 8px;
   font-size: 1.25rem;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   text-decoration: none;
   display: inline-block;
   border: 2px solid transparent;
   min-width: 240px;
   text-align: center;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
 }

 .hero-cta-btn:hover {
   background: rgba(26, 26, 26, 1);
   border-color: rgba(255, 255, 255, 0.3);
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
 }

 /* ============================================================================
   6. BANNER AUTOS DISPONIBLES
   Banner informativo debajo del slider principal
   ============================================================================ */
 .autos-disponibles-banner {
   background: linear-gradient(135deg, #014bae 0%, #0066cc 100%);
   padding: 3rem 2rem;
   text-align: center;
 }

 .autos-disponibles-banner .container {
   max-width: 1400px;
   margin: 0 auto;
 }

 .banner-title {
   color: white;
   font-size: 2.5rem;
   font-weight: 700;
   letter-spacing: 1px;
   margin: 0;
   text-transform: uppercase;
 }

 .banner-subtitle {
   color: white;
   font-size: 1.15rem;
   font-weight: 400;
   margin: 1rem 0 0 0;
   opacity: 0.95;
   line-height: 1.5;
 }

 /* ============================================================================
   7. CARRUSEL DE VEHÍCULOS
   Sistema de visualización de vehículos en carrusel horizontal
   ============================================================================ */
 .vc-section {
   padding: 4rem 2rem;
   background: #f8f9fa;
   overflow: hidden;
 }

 .vc-container {
   max-width: 1400px;
   margin: 0 auto;
 }

 .vc-header {
   text-align: center;
   margin-bottom: 3rem;
 }

 .vc-title {
   font-size: 2.5rem;
   font-weight: 700;
   color: #1a1a1a;
   margin-bottom: 0.5rem;
 }

 .vc-subtitle {
   font-size: 1.1rem;
   color: #666;
 }

 .vc-carousel-wrapper {
   position: relative;
   padding: 0 60px;
 }

 .vc-carousel {
   display: flex;
   gap: 2rem;
   overflow-x: auto;
   scroll-behavior: smooth;
   scrollbar-width: none;
   -ms-overflow-style: none;
 }

 .vc-carousel::-webkit-scrollbar {
   display: none;
 }

 /* ✅ AJUSTE PARA MOSTRAR 4 TARJETAS */
 .vc-card {
   min-width: 300px;
   /* ✅ Cambio de 350px a 300px */
   flex: 0 0 calc(25% - 1.5rem);
   /* ✅ Nuevo: cada tarjeta ocupa 25% del ancho */
   background: white;
   border-radius: 20px;
   overflow: hidden;
   box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
   transition: all 0.3s ease;
 }

 .vc-card:hover {
   transform: translateY(-8px);
   box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
 }

 .vc-image-container {
   position: relative;
   width: 100%;
   height: 240px;
   overflow: hidden;
   background: linear-gradient(135deg, #e8f4f8 0%, #f5f5f5 100%);
 }

 .vc-image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   transition: transform 0.4s ease;
 }

 .vc-card:hover .vc-image {
   transform: scale(1.08);
 }

 /* Cinta diagonal decorativa */
 .vc-ribbon-banner {
   position: absolute;
   top: 20px;
   right: -35px;
   width: 180px;
   background: #ae0a01;
   color: white;
   text-align: center;
   font-size: 0.7rem;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.5px;
   padding: 8px 0;
   transform: rotate(45deg);
   box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
   z-index: 10;
 }

 .vc-ribbon-banner::before {
   content: '';
   position: absolute;
   left: 0;
   bottom: -3px;
   width: 100%;
   height: 3px;
   background: rgba(0, 0, 0, 0.2);
   transform: scaleX(0.95);
 }

 .vc-ribbon-banner::after {
   content: '';
   position: absolute;
   top: 100%;
   left: 0;
   right: 0;
   height: 5px;
   background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent);
 }

 /* Contenido de la tarjeta */
 .vc-content {
   padding: 1.5rem;
 }

 .vc-brand {
   font-size: 1.5rem;
   font-weight: 700;
   color: #1a1a1a;
   margin-bottom: 0.3rem;
   text-align: center;
 }

 .vc-model {
   font-size: 1.4rem;
   font-weight: 700;
   color: #1a1a1a;
   margin-bottom: 0.8rem;
   text-align: center;
 }

 .vc-code {
   text-align: center;
   color: #999;
   font-size: 0.85rem;
   margin-bottom: 1.2rem;
   font-weight: 500;
 }

 /* Especificaciones del vehículo */
 .vc-specs {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 1rem;
   margin-bottom: 1.5rem;
   padding: 1rem 0;
   border-top: 1px solid #e8e8e8;
   border-bottom: 1px solid #e8e8e8;
 }

 .vc-spec-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 0.4rem;
 }

 .vc-spec-icon {
   width: 40px;
   height: 40px;
   background: #f0f5ff;
   border-radius: 10px;
   display: flex;
   align-items: center;
   justify-content: center;
   color: #014bae;
   font-size: 1.1rem;
 }

 .vc-spec-text {
   font-size: 0.75rem;
   color: #666;
   font-weight: 600;
   text-align: center;
   line-height: 1.2;
 }

 /* Footer de la tarjeta */
 .vc-footer {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 1rem;
 }

 .vc-price {
   font-size: 1.8rem;
   font-weight: 700;
   color: #014bae;
 }

 .vc-btn {
   background: #014bae;
   color: white;
   border: none;
   padding: 0.9rem 2.5rem;
   border-radius: 30px;
   font-size: 1rem;
   font-weight: 700;
   cursor: pointer;
   transition: all 0.3s ease;
   text-decoration: none;
   display: inline-block;
 }

 .vc-btn:hover {
   background: #003580;
   transform: translateY(-2px);
   box-shadow: 0 4px 15px rgba(1, 75, 174, 0.3);
 }

 /* Botones de navegación del carrusel */
 .vc-nav-btn {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   width: 50px;
   height: 50px;
   background: white;
   border: none;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
   z-index: 10;
   color: #014bae;
   font-size: 1.3rem;
 }

 .vc-nav-btn:hover {
   background: #014bae;
   color: white;
   transform: translateY(-50%) scale(1.1);
 }

 .vc-nav-prev {
   left: 0;
 }

 .vc-nav-next {
   right: 0;
 }

 /* ============================================================================
   RESPONSIVE PARA CARRUSEL
   ============================================================================ */

 /* Desktop grande (1400px+) - 4 tarjetas */
 @media (min-width: 1400px) {
   .vc-card {
     flex: 0 0 calc(25% - 1.5rem);
     min-width: 320px;
   }
 }

 /* Desktop mediano (1200px - 1399px) - 4 tarjetas */
 @media (min-width: 1200px) and (max-width: 1399px) {
   .vc-card {
     flex: 0 0 calc(25% - 1.5rem);
     min-width: 280px;
   }
 }

 /* Desktop pequeño (968px - 1199px) - 3 tarjetas */
 @media (min-width: 968px) and (max-width: 1199px) {
   .vc-card {
     flex: 0 0 calc(33.333% - 1.33rem);
     min-width: 300px;
   }
 }

 /* Tablets (768px - 967px) - 2 tarjetas */
 @media (min-width: 768px) and (max-width: 967px) {
   .vc-carousel-wrapper {
     padding: 0 40px;
   }

   .vc-card {
     flex: 0 0 calc(50% - 1rem);
     min-width: 300px;
   }

   .vc-nav-btn {
     width: 40px;
     height: 40px;
     font-size: 1rem;
   }
 }

 /* Móviles (menos de 768px) - 1 tarjeta */
 @media (max-width: 767px) {
   .vc-carousel-wrapper {
     padding: 0 30px;
   }

   .vc-card {
     flex: 0 0 100%;
     min-width: 280px;
     max-width: 400px;
   }

   .vc-specs {
     gap: 0.5rem;
   }

   .vc-spec-icon {
     width: 35px;
     height: 35px;
     font-size: 1rem;
   }

   .vc-spec-text {
     font-size: 0.7rem;
   }

   .vc-footer {
     flex-direction: column;
     gap: 1rem;
   }

   .vc-btn {
     width: 100%;
     text-align: center;
   }

   .vc-ribbon-banner {
     top: 18px;
     right: -40px;
     width: 160px;
     font-size: 0.65rem;
     padding: 7px 0;
   }

   .vc-nav-btn {
     width: 35px;
     height: 35px;
     font-size: 0.9rem;
   }
 }

 /* Móviles pequeños (menos de 480px) */
 @media (max-width: 480px) {
   .vc-section {
     padding: 2rem 1rem;
   }

   .vc-card {
     min-width: 260px;
   }

   .vc-brand,
   .vc-model {
     font-size: 1.2rem;
   }

   .vc-price {
     font-size: 1.5rem;
   }

   .vc-ribbon-banner {
     top: 15px;
     right: -45px;
     width: 140px;
     font-size: 0.6rem;
     padding: 6px 0;
   }
 }

 /* ============================================================================
   8. SECCIÓN DE MARCAS
   Grid de marcas de vehículos disponibles
   ============================================================================ */
 .brands-section {
   padding: 4rem 2rem;
   background: #f8f9fa;
 }

 .brands-container {
   max-width: 1400px;
   margin: 0 auto;
 }

 .brands-title {
   text-align: center;
   font-size: 2.5rem;
   font-weight: 700;
   color: #2c3e50;
   margin-bottom: 3rem;
   text-transform: uppercase;
   letter-spacing: 1px;
 }

 .brands-grid {
   display: grid;
   grid-template-columns: repeat(8, 1fr);
   gap: 3rem 2rem;
   align-items: center;
 }

 .brand-item {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 1rem;
   transition: transform 0.3s ease;
   cursor: pointer;
 }

 .brand-item:hover {
   transform: translateY(-5px);
 }

 .brand-logo {
   width: 100%;
   max-width: 100px;
   height: 80px;
   object-fit: contain;
   filter: grayscale(0%);
   transition: all 0.3s ease;
 }

 .brand-item:hover .brand-logo {
   filter: grayscale(0%) brightness(1.1);
 }

 .brand-name {
   font-size: 1rem;
   font-weight: 600;
   color: #666;
   text-align: center;
 }

 .more-brands-btn {
   background: #0056b3;
   color: white;
   border: none;
   padding: 1.2rem 2rem;
   border-radius: 12px;
   font-size: 1rem;
   font-weight: 700;
   cursor: pointer;
   transition: all 0.3s ease;
   display: flex;
   /* flex-direction: column; */
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   /* min-height: 100px; */
   box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
 }

 .more-brands-btn:hover {
   background: #007bff;
   transform: translateY(-5px);
   box-shadow: 0 6px 20px rgba(0, 123, 255, 0.4);
 }

 .more-brands-btn i {
   font-size: 1.8rem;
 }

 .more-brands-text {
   font-size: 0.95rem;
   line-height: 1.3;
 }

 /* ============================================================================
   9. FOOTER
   Pie de página con información de contacto y enlaces
   ============================================================================ */
 footer {
   background: #014bae;
   color: white;
   padding: 3rem 5% 1rem;
 }

 .footer-content {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 3rem;
   max-width: 1400px;
   margin: 0 auto 2rem;
 }

 .footer-section h3 {
   margin-bottom: 1.5rem;
   font-size: 1.2rem;
   display: flex;
   align-items: center;
   gap: 0.5rem;
 }

 .footer-section h3 i {
   font-size: 1.2rem;
   color: #1a1a1a;
 }

 .footer-section p,
 .footer-section a {
   color: white;
   text-decoration: none;
   display: block;
   margin-bottom: 0.8rem;
   line-height: 1.6;
 }

 .footer-section a {
   display: flex;
   align-items: center;
   gap: 0.5rem;
 }

 .footer-section a i {
   font-size: 1rem;
   color: #1a1a1a;
 }

 .footer-section p i {
   color: #1a1a1a;
 }

 .footer-section a:hover {
   color: #1a1a1a;
 }

 .footer-logo {
   font-size: 1.8rem;
   font-weight: bold;
   margin-bottom: 1rem;
 }

 .footer-logo span {
   color: #1a1a1a;
 }

 .footer-section .social-icons {
   margin-top: 1rem;
   display: flex;
   gap: 0.8rem;
 }

 .footer-section .social-icons a {
   background: #1877F2;
 }

 .schedule-row {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 0.5rem;
 }

 .footer-bottom {
   text-align: center;
   padding-top: 2rem;
   border-top: 1px solid rgba(255, 255, 255, 0.2);
   color: rgba(255, 255, 255, 0.8);
   font-size: 0.9rem;
 }

 .footer-links {
   display: flex;
   justify-content: center;
   gap: 2rem;
   margin-top: 1rem;
   flex-wrap: wrap;
 }

 .footer-links a {
   color: rgba(255, 255, 255, 0.8);
   text-decoration: none;
   font-size: 0.9rem;
 }

 .footer-links a:hover {
   color: #1a1a1a;
 }

 /* ============================================================================
   10. BOTÓN DE CONTACTO FLOTANTE
   Botón de WhatsApp fijo en la esquina inferior derecha
   ============================================================================ */
 .contact-btn {
   background: #1a1a1a;
   color: white;
   padding: 1rem 2.2rem;
   border-radius: 30px;
   border: none;
   font-size: 1.05rem;
   font-weight: 600;
   cursor: pointer;
   position: fixed;
   bottom: 2.5rem;
   right: 2.5rem;
   z-index: 999;
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
   transition: all 0.3s;
 }

 .contact-btn:hover {
   background: #333;
   transform: translateY(-3px);
   box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
 }

 /* ============================================================================
   11. AJUSTES RESPONSIVE
   Media queries para adaptación a diferentes tamaños de pantalla
   ============================================================================ */

 /* Tablets y pantallas medianas (968px) */
 @media (max-width: 968px) {
   .hero-content-box {
     padding: 2.5rem 2rem;
     background: rgba(255, 255, 255, 0.88);
   }

   .autos-disponibles-banner {
     padding: 2.5rem 1.5rem;
   }

   .banner-title {
     font-size: 2rem;
   }

   .banner-subtitle {
     font-size: 1.05rem;
   }

   .brands-grid {
     grid-template-columns: repeat(4, 1fr);
     gap: 2rem 1rem;
   }

   .brands-title {
     font-size: 2rem;
   }

   .brand-logo {
     max-width: 80px;
     height: 70px;
   }
 }

 /* Tablets pequeñas y móviles grandes (768px) */
 @media (max-width: 768px) {
   .top-bar {
     display: none;
   }

   header {
     padding: 1rem 3%;
   }

   .logo img {
     height: 60px;
   }

   nav {
     display: none !important;
   }

   .menu-toggle {
     display: flex;
   }

   .hero-content-box {
     padding: 2rem 1.5rem;
     border-radius: 15px;
     background: rgba(255, 255, 255, 0.9);
   }

   .hero-cta-btn {
     width: 100%;
     max-width: 300px;
     padding: 1rem 2rem;
     font-size: 1.1rem;
   }

   .autos-disponibles-banner {
     padding: 2rem 1rem;
   }

   .banner-title {
     font-size: 1.6rem;
     letter-spacing: 0.5px;
   }

   .banner-subtitle {
     font-size: 0.95rem;
     margin-top: 0.8rem;
   }

   .vc-carousel-wrapper {
     padding: 0 40px;
   }

   .vc-card {
     min-width: 300px;
   }

   .vc-title {
     font-size: 2rem;
   }

   .vc-nav-btn {
     width: 40px;
     height: 40px;
     font-size: 1rem;
   }

   .vc-specs {
     gap: 0.5rem;
   }

   .vc-spec-icon {
     width: 35px;
     height: 35px;
     font-size: 1rem;
   }

   .vc-spec-text {
     font-size: 0.7rem;
   }

   .vc-footer {
     flex-direction: column;
     gap: 1rem;
   }

   .vc-btn {
     width: 100%;
     text-align: center;
   }

   .vc-ribbon-banner {
     top: 18px;
     right: -40px;
     width: 160px;
     font-size: 0.65rem;
     padding: 7px 0;
   }

   .footer-content {
     grid-template-columns: 1fr;
     gap: 2rem;
     text-align: center;
   }

   .footer-section {
     display: flex;
     flex-direction: column;
     align-items: center;
   }

   .footer-section h3 {
     justify-content: center;
   }

   .footer-section a {
     justify-content: center;
   }

   .footer-section .social-icons {
     justify-content: center;
   }

   .schedule-row {
     max-width: 300px;
   }

   .contact-btn {
     bottom: 6.5rem;
     right: 1.5rem;
     padding: 0.8rem 1.5rem;
     font-size: 0.95rem;
   }
 }

 /* Tablets pequeñas (640px) */
 @media (max-width: 640px) {
   .brands-section {
     padding: 3rem 1rem;
   }

   .brands-grid {
     grid-template-columns: repeat(3, 1fr);
     gap: 2rem 0.5rem;
   }

   .brands-title {
     font-size: 1.6rem;
     margin-bottom: 2rem;
   }

   .brand-logo {
     max-width: 70px;
     height: 60px;
   }

   .brand-name {
     font-size: 0.85rem;
   }

   .more-brands-btn {
     padding: 1rem 1.5rem;
     min-height: 90px;
   }

   .more-brands-btn i {
     font-size: 1.5rem;
   }

   .more-brands-text {
     font-size: 0.85rem;
   }
 }

 /* Móviles (480px) */
 @media (max-width: 480px) {
   .hero-content-box {
     padding: 1.5rem 1rem;
     background: rgba(255, 255, 255, 0.92);
   }

   .hero-cta-btn {
     padding: 0.9rem 1.5rem;
     font-size: 1rem;
     min-width: 200px;
   }

   .autos-disponibles-banner {
     padding: 1.5rem 1rem;
   }

   .banner-title {
     font-size: 1.3rem;
   }

   .banner-subtitle {
     font-size: 0.85rem;
   }

   .vc-section {
     padding: 2rem 1rem;
   }

   .vc-carousel-wrapper {
     padding: 0 30px;
   }

   .vc-card {
     min-width: 280px;
   }

   .vc-brand,
   .vc-model {
     font-size: 1.2rem;
   }

   .vc-price {
     font-size: 1.5rem;
   }

   .vc-ribbon-banner {
     top: 15px;
     right: -45px;
     width: 140px;
     font-size: 0.6rem;
     padding: 6px 0;
   }

   .brands-grid {
     grid-template-columns: repeat(2, 1fr);
     gap: 1.5rem 1rem;
   }

   .brands-title {
     font-size: 1.4rem;
   }
 }

 /* Ajuste adicional para header en desktop (768px+) */
 @media (min-width: 768px) {
   .md\:h-\[74px\] {
     height: 97px;
   }
 }

 /* ============================================================================
   FIN DE ESTILOS
   ============================================================================ */

 /* ============================================================================
   MODAL DE VEHÍCULO - ESTILO LIMPIO CON FONDO CLARO
   ============================================================================ */
 .vehicle-modal-overlay {
   display: none;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   /* ✅ Fondo más claro */
   z-index: 10000;
   overflow-y: auto;
   padding: 2rem;
 }

 .vehicle-modal-overlay.active {
   display: flex;
   align-items: center;
   justify-content: center;
 }

 .vehicle-modal {
   margin-top: 6rem;
   background: white;
   border-radius: 16px;
   /* ✅ Bordes menos redondeados */
   max-width: 1200px;
   width: 100%;
   position: relative;
   animation: modalSlideIn 0.3s ease;
   /* max-height: 90vh; */
   overflow: hidden;
   box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
   /* ✅ Sombra más suave */
 }

 @keyframes modalSlideIn {
   from {
     opacity: 0;
     transform: translateY(-30px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 .vehicle-modal-close {
   position: absolute;
   top: 20px;
   right: 20px;
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.95);
   /* ✅ Fondo semi-transparente */
   border: none;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 10;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
   transition: all 0.3s;
 }

 .vehicle-modal-close:hover {
   background: white;
   transform: scale(1.1);
 }

 .vehicle-modal-close i {
   font-size: 1.2rem;
   color: #333;
 }

 .vehicle-modal-content {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 0;
   max-height: 90vh;
   overflow-y: auto;
 }

 /* ============================================================================
   SLIDER DE IMÁGENES - FONDO CLARO
   ============================================================================ */
 .vehicle-modal-slider {
   background: #f5f7fa;
   /* ✅ Fondo gris muy claro */
   padding: 2.5rem;
   display: flex;
   flex-direction: column;
   gap: 1rem;
 }

 .vehicle-slider-main {
   position: relative;
   width: 100%;
   aspect-ratio: 4/3;
   border-radius: 12px;
   overflow: hidden;
   background: white;
   box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
   /* ✅ Sombra suave */
 }

 .vehicle-slider-main img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 .slider-btn {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   width: 45px;
   height: 45px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.95);
   border: none;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: all 0.3s;
   z-index: 2;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
 }

 .slider-btn:hover {
   background: white;
   transform: translateY(-50%) scale(1.1);
 }

 .slider-prev {
   left: 15px;
 }

 .slider-next {
   right: 15px;
 }

 .slider-btn i {
   color: #014bae;
   font-size: 1.2rem;
 }

 .vehicle-slider-thumbnails {
   display: flex;
   gap: 0.75rem;
   overflow-x: auto;
   padding-bottom: 0.5rem;
 }

 .vehicle-slider-thumbnails::-webkit-scrollbar {
   height: 6px;
 }

 .vehicle-slider-thumbnails::-webkit-scrollbar-thumb {
   background: #ddd;
   border-radius: 3px;
 }

 .thumbnail-item {
   min-width: 80px;
   width: 80px;
   height: 60px;
   border-radius: 8px;
   overflow: hidden;
   cursor: pointer;
   border: 3px solid transparent;
   transition: all 0.3s;
   box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
 }

 .thumbnail-item:hover {
   border-color: #014bae;
 }

 .thumbnail-item.active {
   border-color: #014bae;
   box-shadow: 0 3px 10px rgba(1, 75, 174, 0.3);
 }

 .thumbnail-item img {
   width: 100%;
   height: 100%;
   object-fit: cover;
 }

 /* ============================================================================
   INFORMACIÓN DEL VEHÍCULO - DISEÑO LIMPIO CON TABLA ALTERNADA
   ============================================================================ */
 .vehicle-modal-info {
   background: #fff;
   border-radius: 16px;
   padding: 28px;
   box-shadow: 0 8px 25px #0000001a;
   border: 2px solid #e2e8f0;
 }

 .vehicle-modal-header {
   margin-bottom: 1.5rem;
   padding-bottom: 1.5rem;
   border-bottom: 2px solid #f0f0f0;
   /* ✅ Línea separadora sutil */
 }

 .vehicle-modal-title {
   font-size: 2rem;
   font-weight: 700;
   color: #1a1a1a;
   margin-bottom: 0.5rem;
 }

 .vehicle-modal-code {
   color: #999;
   font-size: 0.95rem;
   font-weight: 500;
   background: #f5f7fa;
   padding: 0.3rem 0.8rem;
   border-radius: 20px;
   display: inline-block;
 }

 .vehicle-modal-price {
   font-size: 2.5rem;
   font-weight: 700;
   color: #0066cc;
   margin-bottom: 2rem;
   text-align: center;
   /* ✅ Precio centrado */
 }

 .vehicle-modal-specs {
   display: flex;
   flex-direction: column;
   gap: 0;
   /* ✅ Sin espacio entre filas */
   margin-bottom: 2rem;
 }

 /* ✅ Estilo de tabla con filas alternadas */
 .spec-row {
   display: grid;
   grid-template-columns: 180px 1fr;
   padding: 1rem 1.5rem;
   gap: 1rem;
   border: none;
   /* ✅ Sin bordes */
 }

 /* ✅ Fila par - fondo gris claro */
 .spec-row:nth-child(even) {
   background: #f5f5f5;
 }

 /* ✅ Fila impar - fondo blanco */
 .spec-row:nth-child(odd) {
   background: white;
 }



 .spec-label {
   font-size: 0.8rem;
   font-weight: 700;
   color: #666;
   text-transform: uppercase;
   letter-spacing: 0.5px;
 }

 .spec-value {
   font-size: 0.95rem;
   font-weight: 600;
   color: #1a1a1a;
 }

 /* ============================================================================
   FORMULARIO AGENDA TU CITA - ESTILO MEJORADO
   ============================================================================ */
 .agenda-cita-form {
   background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
   border-radius: 12px;
   padding: 2rem;
   margin-top: 2rem;
   box-shadow: 0 4px 15px rgba(255, 215, 0, 0.25);
 }

 .agenda-cita-header {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.75rem;
   margin-bottom: 1.5rem;
 }

 .agenda-cita-header i {
   font-size: 1.8rem;
   color: #1a1a1a;
 }

 .agenda-cita-header h3 {
   font-size: 1.3rem;
   font-weight: 700;
   color: #1a1a1a;
   margin: 0;
   text-transform: uppercase;
   letter-spacing: 0.5px;
 }

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

 .form-group.full-width {
   width: 100%;
 }

 .form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1rem;
   margin-bottom: 1rem;
 }

 .form-group label {
   display: block;
   font-size: 0.9rem;
   font-weight: 700;
   color: #1a1a1a;
   margin-bottom: 0.5rem;
 }

 .form-group input,
 .form-group textarea {
   width: 100%;
   padding: 0.85rem 1rem;
   border: 2px solid rgba(26, 26, 26, 0.1);
   border-radius: 8px;
   font-size: 0.95rem;
   background: white;
   transition: all 0.3s;
   font-family: Arial, sans-serif;
 }

 .form-group input:focus,
 .form-group textarea:focus {
   outline: none;
   border-color: #1a1a1a;
   box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
 }

 .form-group input::placeholder,
 .form-group textarea::placeholder {
   color: #999;
 }

 .form-group textarea {
   resize: vertical;
   min-height: 80px;
 }

 .agenda-cita-btn {
   width: 100%;
   background: #1a1a1a;
   color: white;
   border: none;
   padding: 1rem 2rem;
   border-radius: 8px;
   font-size: 1rem;
   font-weight: 700;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.75rem;
   transition: all 0.3s;
   margin-top: 0.5rem;
   text-transform: uppercase;
   letter-spacing: 0.5px;
 }

 .agenda-cita-btn:hover {
   background: #333;
   transform: translateY(-2px);
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
 }

 .agenda-cita-btn i {
   font-size: 1.1rem;
 }

 /* Mensaje de éxito */
 .agenda-success-message {
   background: #4CAF50;
   color: white;
   padding: 1rem;
   border-radius: 8px;
   text-align: center;
   font-weight: 600;
   margin-top: 1rem;
   display: none;
 }

 .agenda-success-message.show {
   display: block;
   animation: slideIn 0.3s ease;
 }

 @keyframes slideIn {
   from {
     opacity: 0;
     transform: translateY(-10px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* ============================================================================
   RESPONSIVE
   ============================================================================ */
 @media (max-width: 968px) {
   .vehicle-modal-content {
     grid-template-columns: 1fr;
   }

   .vehicle-modal-slider {
     padding: 1.5rem;
   }

   .vehicle-modal-info {
     padding: 2rem 1.5rem;
   }

   .vehicle-modal-title {
     font-size: 1.6rem;
   }

   .vehicle-modal-price {
     font-size: 2rem;
   }

   .spec-row {
     grid-template-columns: 120px 1fr;
     padding: 0.8rem;
   }
 }

 @media (max-width: 640px) {
   .vehicle-modal-overlay {
     padding: 1rem;
   }

   .vehicle-modal {
     border-radius: 12px;
   }

   .vehicle-modal-info {
     padding: 1.5rem 1rem;
   }

   .spec-row {
     grid-template-columns: 1fr;
     gap: 0.5rem;
   }

   .slider-btn {
     width: 35px;
     height: 35px;
   }

   .thumbnail-item {
     min-width: 60px;
     width: 60px;
     height: 45px;
   }

   .agenda-cita-form {
     padding: 1.5rem;
   }

   .form-row {
     grid-template-columns: 1fr;
     gap: 0;
   }

   .agenda-cita-header h3 {
     font-size: 1.1rem;
   }

   .agenda-cita-header i {
     font-size: 1.5rem;
   }
 }





 /* ============================================================================
   FORMULARIO AGENDA TU CITA EN MODAL
   ============================================================================ */
 .agenda-cita-form {
   background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
   border-radius: 16px;
   padding: 2rem;
   margin-top: 2rem;
   box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
 }

 .agenda-cita-header {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.75rem;
   margin-bottom: 1.5rem;
 }

 .agenda-cita-header i {
   font-size: 1.8rem;
   color: #1a1a1a;
 }

 .agenda-cita-header h3 {
   font-size: 1.3rem;
   font-weight: 700;
   color: #1a1a1a;
   margin: 0;
   text-transform: uppercase;
   letter-spacing: 0.5px;
 }

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

 .form-group.full-width {
   width: 100%;
 }

 .form-row {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 1rem;
   margin-bottom: 1rem;
 }

 .form-group label {
   display: block;
   font-size: 0.9rem;
   font-weight: 700;
   color: #1a1a1a;
   margin-bottom: 0.5rem;
 }

 .form-group input,
 .form-group textarea {
   width: 100%;
   padding: 0.85rem 1rem;
   border: 2px solid rgba(26, 26, 26, 0.1);
   border-radius: 8px;
   font-size: 0.95rem;
   background: white;
   transition: all 0.3s;
   font-family: Arial, sans-serif;
 }

 .form-group input:focus,
 .form-group textarea:focus {
   outline: none;
   border-color: #1a1a1a;
   box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.1);
 }

 .form-group input::placeholder,
 .form-group textarea::placeholder {
   color: #999;
 }

 .form-group textarea {
   resize: vertical;
   min-height: 80px;
 }

 .agenda-cita-btn {
   width: 100%;
   background: #1a1a1a;
   color: white;
   border: none;
   padding: 1rem 2rem;
   border-radius: 8px;
   font-size: 1rem;
   font-weight: 700;
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.75rem;
   transition: all 0.3s;
   margin-top: 0.5rem;
   text-transform: uppercase;
   letter-spacing: 0.5px;
 }

 .agenda-cita-btn:hover {
   background: #333;
   transform: translateY(-2px);
   box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
 }

 .agenda-cita-btn i {
   font-size: 1.1rem;
 }

 /* Mensaje de éxito */
 .agenda-success-message {
   background: #4CAF50;
   color: white;
   padding: 1rem;
   border-radius: 8px;
   text-align: center;
   font-weight: 600;
   margin-top: 1rem;
   display: none;
 }

 .agenda-success-message.show {
   display: block;
   animation: slideIn 0.3s ease;
 }

 @keyframes slideIn {
   from {
     opacity: 0;
     transform: translateY(-10px);
   }

   to {
     opacity: 1;
     transform: translateY(0);
   }
 }

 /* Responsive para el formulario */
 @media (max-width: 640px) {
   .agenda-cita-form {
     padding: 1.5rem;
   }

   .form-row {
     grid-template-columns: 1fr;
     gap: 0;
   }

   .agenda-cita-header h3 {
     font-size: 1.1rem;
   }

   .agenda-cita-header i {
     font-size: 1.5rem;
   }
 }

 /* ============================================================================
   HEADER AZUL DEL MODAL
   ============================================================================ */
 .vehicle-modal-header-top {
   background: linear-gradient(135deg, #014bae 0%, #0066cc 100%);
   padding: 1.5rem 2rem;
   display: flex;
   align-items: center;
   justify-content: space-between;
   position: relative;
   border-radius: 16px 16px 0 0;
 }

 .vehicle-modal-title-top {
   font-size: 1.8rem;
   font-weight: 700;
   color: white;
   margin: 0;
   flex: 1;
 }

 .vehicle-modal-code-top {
   background: rgba(255, 255, 255, 0.2);
   color: white;
   padding: 0.5rem 1.2rem;
   border-radius: 20px;
   font-size: 0.9rem;
   font-weight: 600;
   margin: 0 1rem;
 }

 .vehicle-modal-close {
   position: static;
   /* ✅ Cambio de absolute a static */
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: rgba(255, 255, 255, 0.2);
   border: 2px solid rgba(255, 255, 255, 0.3);
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   z-index: 10;
   transition: all 0.3s;
   flex-shrink: 0;
 }

 .vehicle-modal-close:hover {
   background: rgba(255, 255, 255, 0.3);
   transform: scale(1.1);
 }

 .vehicle-modal-close i {
   font-size: 1.2rem;
   color: white;
 }

 /* ============================================================================
   RESPONSIVE PARA ESPECIFICACIONES
   ============================================================================ */
 @media (max-width: 968px) {
   .vehicle-modal-content {
     grid-template-columns: 1fr;
   }

   .vehicle-modal-slider {
     padding: 1.5rem;
   }

   .vehicle-modal-info {
     padding: 2rem 1.5rem;
   }

   .vehicle-modal-price {
     font-size: 2rem;
   }

   .spec-row {
     grid-template-columns: 140px 1fr;
     padding: 0.9rem 1.2rem;
   }

   .spec-label {
     font-size: 0.8rem;
   }

   .spec-value {
     font-size: 0.95rem;
   }
 }

 @media (max-width: 640px) {
   .vehicle-modal-overlay {
     padding: 1rem;
   }

   .vehicle-modal {
     border-radius: 12px;
   }

   .vehicle-modal-header-top {
     padding: 1.2rem 1.5rem;
     flex-wrap: wrap;
     gap: 0.5rem;
   }

   .vehicle-modal-title-top {
     font-size: 1.4rem;
     flex: 1 1 100%;
     text-align: center;
   }

   .vehicle-modal-code-top {
     margin: 0 auto;
   }

   .vehicle-modal-info {
     padding: 1.5rem 1rem;
   }

   .vehicle-modal-price {
     font-size: 1.8rem;
   }

   .spec-row {
     grid-template-columns: 1fr;
     gap: 0.5rem;
     padding: 0.8rem 1rem;
   }

   .spec-label {
     font-size: 0.75rem;
   }

   .spec-value {
     font-size: 0.9rem;
   }

   .slider-btn {
     width: 35px;
     height: 35px;
   }

   .thumbnail-item {
     min-width: 60px;
     width: 60px;
     height: 45px;
   }

   .agenda-cita-form {
     padding: 1.5rem;
   }

   .form-row {
     grid-template-columns: 1fr;
     gap: 0;
   }

   .agenda-cita-header h3 {
     font-size: 1.1rem;
   }

   .agenda-cita-header i {
     font-size: 1.5rem;
   }
 }

 /* ========================================
   MENÚ MÓVIL - DISEÑO AZUL
   ======================================== */



 #menu-mobile.active {
   left: 0;
 }

 #menu-mobile .menu-container {
   background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
   width: 85%;
   max-width: 400px;
   height: 100%;
   box-shadow: 2px 0 20px rgba(0, 0, 0, 0.3);
 }

 /* Header del menú */
 .mobile-menu-header {
   padding: 24px 20px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
   margin-bottom: 20px;
 }

 .mobile-menu-logo {
   font-size: 28px;
   font-weight: 700;
   color: white;
   letter-spacing: -0.5px;
 }

 .mobile-menu-logo span {
   color: #000000;
   font-weight: 600;
 }

 /* Botón cerrar */
 .close-menu-mobile-btn {
   top: 20px;

   position: relative;
   width: 36px;
   height: 36px;
   background: white;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   cursor: pointer;
   transition: all 0.3s ease;
   box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
 }

 .close-menu-mobile-btn:hover {
   background: #f3f4f6;
   transform: rotate(90deg);
 }

 .close-menu-mobile-btn i {
   font-size: 18px;
   color: #1e3a8a;
 }

 /* Botones del menú */
 .mobile-menu-button {
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 16px 20px;
   margin: 12px 20px;
   background: rgba(59, 130, 246, 0.2);
   border-radius: 16px;
   text-decoration: none;
   transition: all 0.3s ease;
   border: 1px solid rgba(255, 255, 255, 0.1);
   width: 20rem;
 }

 .mobile-menu-button:hover {
   background: rgba(59, 130, 246, 0.35);
   transform: translateX(5px);
   box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
 }

 .mobile-menu-button-content {
   display: flex;
   align-items: center;
   gap: 16px;
 }

 /* Íconos */
 .mobile-menu-icon {
   width: 48px;
   height: 48px;
   border-radius: 12px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 20px;
   transition: all 0.3s ease;
 }

 .mobile-menu-icon.blue {
   background: #003580;
   color: white;
 }

 .mobile-menu-icon.black {
   background: #1f2937;
   color: white;
 }

 .mobile-menu-button:hover .mobile-menu-icon {
   transform: scale(1.1);
 }

 /* Texto del menú */
 .mobile-menu-button-content span {
   font-size: 17px;
   font-weight: 600;
   color: white;
   letter-spacing: 0.3px;
 }

 /* Flecha */
 .mobile-menu-arrow {
   font-size: 28px;
   color: rgba(255, 255, 255, 0.6);
   font-weight: 300;
   transition: all 0.3s ease;
 }

 .mobile-menu-button:hover .mobile-menu-arrow {
   color: white;
   transform: translateX(5px);
 }

 /* Overlay para cerrar al hacer clic fuera */
 #menu-mobile::before {
   content: '';
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: rgba(0, 0, 0, 0.5);
   opacity: 0;
   pointer-events: none;
   transition: opacity 0.3s ease;
 }

 #menu-mobile.active::before {
   opacity: 1;
   pointer-events: all;
 }

 /* Responsive adicional */
 @media (max-width: 480px) {
   #menu-mobile .menu-container {
     width: 90%;
   }

   .mobile-menu-logo {
     font-size: 24px;
   }

   .mobile-menu-button {
     margin: 10px 16px;
     padding: 14px 16px;
   }

   .mobile-menu-icon {
     width: 44px;
     height: 44px;
   }

   /* ===============PARA ANCHO DEL RESPONSIVE MOVIL ========== */
   .h-\[56px\] {
     height: 65px;
   }
 }


 