/* ─── VARIABLES Y CONFIGURACIÓN GENERAL ─── */
:root {
    --bg-dark: #0a0a0a;
    --bg-card: #121212;
    --text-white: #ffffff;
    --text-gray: #b3b3b3;
    --brand-yellow: #F3C623; /* Amarillo corporativo refinado */
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    overflow-x: hidden;
}

/* ─── ENCABEZADO (HEADER) ─── */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.logo img {
    height: 45px; /* Altura ideal para legibilidad */
    width: auto;
    display: block;
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--text-white);
}

/* Botón Agenda tu Cita (Estilo premium) */
.btn-agenda {
    border: 1px solid var(--brand-yellow);
    color: var(--brand-yellow);
    padding: 12px 24px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-decoration: none;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-agenda:hover {
    background-color: var(--brand-yellow);
    color: var(--bg-dark);
    box-shadow: 0 0 15px rgba(243, 198, 35, 0.4);
}

/* ─── HERO SLIDER ─── */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.slider-wrapper {
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.slide-content {
    max-width: 800px;
    padding: 0 80px;
    margin-top: 60px; /* Compensa la altura del header */
}

.tagline {
    display: block;
    color: var(--brand-yellow);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.slide-content h1 {
    font-size: 48px;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.slide-content p {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
}

/* Botones del Slide */
.slide-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-primary {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 15px 35px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    border-color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-link {
    color: var(--brand-yellow);
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.btn-link:hover {
    transform: translateX(5px);
}

/* Puntos de navegación inferior (Dots) */
.slider-dots {
    position: absolute;
    bottom: 40px;
    left: 80px;
    z-index: 10;
    display: flex;
    gap: 15px;
}

.dot {
    width: 30px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: var(--brand-yellow);
    width: 45px;
}

/* ─── COMPONENTES MENÚ MÓVIL (Por defecto ocultos en escritorio) ─── */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle span {
    width: 30px;
    height: 2px;
    background-color: var(--text-white);
    transition: all 0.3s ease;
}

/* Animación del botón hamburguesa transformándose en "X" */
.mobile-menu-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-menu-toggle.open span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-only { display: none; }


/* ==========================================================================
   ─── SECCIÓN MEDIA QUERIES (RESPONSIVIDAD CONTROLADA) ───
   ========================================================================== */

/* TABLETS Y MONITORES MEDIANOS */
@media (max-width: 1024px) {
    .slide-content h1 { font-size: 38px; }
    .nav-menu ul { gap: 20px; }
}

/* DISPOSITIVOS MÓVILES (SMARTPHONES) */
@media (max-width: 768px) {
    .header-container { padding: 15px 20px; }
    .header-actions { display: none; } /* Oculta botón de escritorio */
    
    .mobile-menu-toggle { display: flex; }
    
    /* Transformación de navegación a menú cortina lateral */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        padding: 100px 40px;
        transition: right 0.4s ease;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    
    .nav-menu.open { right: 0; }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 30px;
    }
    
    .nav-menu a { font-size: 18px; }
    
    .mobile-only { display: block; width: 100%; margin-top: 20px; }
    
    .btn-agenda-mobile {
        display: block;
        text-align: center;
        border: 1px solid var(--brand-yellow);
        color: var(--brand-yellow);
        padding: 15px;
        font-weight: 700;
        text-decoration: none;
        letter-spacing: 1px;
    }

    /* Ajustes críticos del Hero en Móvil */
    .slide-content { padding: 0 24px; text-align: left; }
    .slide-content h1 { font-size: 28px; font-weight: 700; }
    .slide-content p { font-size: 14px; margin-bottom: 30px; }
    .slide-buttons { flex-direction: column; width: 100%; gap: 15px; }
    .btn-primary { width: 100%; text-align: center; }
    .slider-dots { left: 24px; bottom: 30px; }
}
/* ==========================================================================
   ─── SECCIÓN INVENTARIO (GRID & CARDS) ───
   ========================================================================== */
.inventory-section {
    padding: 100px 40px;
    background-color: var(--bg-dark);
}

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

.section-tagline {
    display: block;
    color: var(--brand-yellow);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 10px;
}

.section-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    color: var(--text-gray);
    font-size: 15px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

/* Cuadrícula Responsiva (CSS Grid) */
.inventory-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tarjeta del Vehículo */
.car-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.04);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.car-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 198, 35, 0.2);
}

/* Contenedor de la Galería Interna */
.car-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10; /* Evita saltos de layout */
    background-color: #000;
    overflow: hidden;
}

.car-slides-container {
    width: 100%;
    height: 100%;
    position: relative;
}

.car-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.car-slide.active {
    opacity: 1;
}

/* Flechas internas del auto */
.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--text-white);
    border: none;
    width: 35px;
    height: 35px;
    cursor: pointer;
    font-size: 14px;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.gallery-arrow:hover {
    background: var(--brand-yellow);
    color: var(--bg-dark);
}

.gallery-arrow.prev { left: 10px; }
.gallery-arrow.next { right: 10px; }

/* Detalles e Info del Auto */
.car-details {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.car-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.car-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
}

.car-year {
    font-size: 13px;
    font-weight: 700;
    background-color: rgba(255,255,255,0.08);
    padding: 3px 8px;
    border-radius: 3px;
    color: var(--text-gray);
}

.car-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--brand-yellow);
    margin-bottom: 20px;
}

/* Grid de Especificaciones */
.car-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 25px;
}

.spec-item {
    font-size: 13px;
    color: var(--text-white);
}

.spec-item span {
    color: var(--text-gray);
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    margin-bottom: 2px;
}

/* Botones de Acción Múltiple (Llamar y WhatsApp) */
.car-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: auto;
}

.car-actions a, .car-actions button {
    text-align: center;
    padding: 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-action-call {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: var(--text-white);
}

.btn-action-call:hover {
    border-color: var(--text-white) !important;
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-action-wa {
    background-color: #25D366; /* Color WhatsApp oficial */
    color: #fff;
}

.btn-action-wa:hover {
    background-color: #20ba5a;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.2);
}

/* Estilos de Estado: VENDIDO */
.car-card.sold {
    opacity: 0.6;
    pointer-events: none; /* Deshabilita clicks en botones */
}

.badge-sold {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: #D32F2F;
    color: #fff;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1px;
    z-index: 6;
}

.car-card.sold .car-price {
    color: var(--text-gray);
    text-decoration: line-through;
}

/* Media Queries específicas para el Inventario */
@media (max-width: 1024px) {
    .inventory-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .inventory-section { padding: 80px 20px; }
}

@media (max-width: 768px) {
    .inventory-grid { grid-template-columns: 1fr; }
    .section-title { font-size: 28px; }
}
/* ==========================================================================
   ─── SECCIÓN SOBRE NOSOTROS (ABOUT SECTION) ───
   ========================================================================== */
.about-section {
    padding: 120px 40px;
    background-color: #0d0d0d; /* Un tono ligeramente diferente para romper la monotonía del negro absoluto */
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr; /* Columna de texto ligeramente más ancha */
    gap: 80px;
    align-items: center;
}

/* Columna de Contenido escrito */
.about-tagline {
    display: block;
    color: var(--brand-yellow);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.about-title {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.about-lead {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-white);
    margin-bottom: 20px;
    font-weight: 500;
}

.about-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* Bloque de Características Checkboxes */
.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 45px;
}

.feature-box {
    display: flex;
    gap: 15px;
}

.feature-icon {
    color: var(--brand-yellow);
    font-weight: 700;
    font-size: 18px;
    margin-top: 2px;
}

.feature-info h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-white);
}

.feature-info p {
    font-size: 13px;
    line-height: 1.5;
    color: var(--text-gray);
}

.btn-about-primary {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    padding: 15px 35px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-about-primary:hover {
    border-color: var(--text-white);
    background-color: rgba(255, 255, 255, 0.05);
}

/* Columna Visual (Composición de Imágenes en Mosaico) */
.about-visual {
    position: relative;
    width: 100%;
    height: 550px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper {
    position: absolute;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

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

/* Imagen Principal (Taller mecánico) */
.main-img {
    width: 75%;
    height: 70%;
    top: 0;
    left: 0;
    z-index: 2;
}

/* Imagen Secundaria (Oficina/Trámites) */
.secondary-img {
    width: 60%;
    height: 55%;
    bottom: 0;
    right: 0;
    z-index: 3;
    border: 4px solid #0d0d0d; /* Crea separación visual limpia entre las fotos */
}

/* Recuadro de Acento Amarillo Estilo Constructivista */
.accent-box {
    position: absolute;
    width: 30%;
    height: 30%;
    bottom: 10%;
    left: -5%;
    border: 2px solid var(--brand-yellow);
    z-index: 1;
    pointer-events: none;
}

/* ─── MEDIA QUERIES PARA "NOSOTROS" ─── */
@media (max-width: 1200px) {
    .about-container { gap: 40px; }
    .about-title { font-size: 32px; }
}

@media (max-width: 992px) {
    .about-container {
        grid-template-columns: 1fr; /* Colapsa a una sola columna */
        gap: 60px;
    }
    
    .about-visual {
        height: 450px; /* Reduce altura en pantallas medianas */
        max-width: 600px;
        margin: 0 auto;
    }
    
    .about-content {
        text-align: left;
    }
}

@media (max-width: 576px) {
    .about-section { padding: 80px 20px; }
    .about-features { grid-template-columns: 1fr; gap: 20px; }
    .about-title { font-size: 26px; }
    .about-visual { height: 350px; }
    .accent-box { display: none; } /* Quitamos ruido visual en pantallas muy pequeñas */
}
/* ==========================================================================
   ─── SECCIÓN SERVICIOS (SERVICES GRID) ───
   ========================================================================== */
.services-section {
    padding: 100px 40px;
    background-color: var(--bg-dark);
}

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

.services-tagline {
    display: block;
    color: var(--brand-yellow);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 10px;
}

.services-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.services-subtitle {
    color: var(--text-gray);
    font-size: 15px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

/* Grid de Servicios */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

/* Tarjeta Individual de Servicio */
.service-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 198, 35, 0.3);
    background-color: #161616; /* Un sutil aclarado al pasar el mouse */
}

/* Contenedor del Icono SVG */
.service-icon-wrapper {
    color: var(--brand-yellow);
    width: 50px;
    height: 50px;
    margin-bottom: 25px;
}

.service-svg {
    width: 100%;
    height: 100%;
}

.service-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: -0.3px;
}

.service-card-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
    flex-grow: 1; /* Empuja la lista hacia abajo uniformemente */
}

/* Lista interna de detalles */
.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 15px;
}

.service-list li {
    font-size: 13px;
    color: var(--text-white);
    margin-bottom: 8px;
    position: relative;
    padding-left: 15px;
}

.service-list li::before {
    content: "•";
    color: var(--brand-yellow);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Botón de Acción de la sección */
.services-action {
    text-align: center;
    margin-top: 20px;
}

.btn-services-cta {
    display: inline-block;
    background-color: var(--brand-yellow);
    color: var(--bg-dark);
    padding: 18px 40px;
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-services-cta:hover {
    background-color: #fff;
    color: var(--bg-dark);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

/* ─── MEDIA QUERIES PARA SERVICIOS ─── */
@media (max-width: 1024px) {
    .services-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
    .services-section { padding: 80px 20px; }
    .service-card { padding: 30px 20px; }
}
/* ==========================================================================
   ─── SECCIÓN TESTIMONIOS (TESTIMONIALS) ───
   ========================================================================== */
.testimonials-section {
    padding: 100px 40px;
    background-color: #0d0d0d; /* Alternancia sutil de fondo oscuro */
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

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

.testimonials-tagline {
    display: block;
    color: var(--brand-yellow);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 10px;
}

.testimonials-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.testimonials-subtitle {
    color: var(--text-gray);
    font-size: 15px;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px auto;
    line-height: 1.6;
}

/* Distribución en 3 columnas */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Tarjeta de Reseña */
.testimonial-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 198, 35, 0.2);
}

/* Sistema de Estrellas Doradas */
.testimonial-stars {
    color: var(--brand-yellow);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

/* Texto del Testimonio */
.testimonial-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-white);
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1; /* Asegura alineación uniforme de los autores */
}

/* Identificación del Usuario */
.testimonial-user {
    display: flex;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 20px;
}

.user-info h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 4px;
}

.user-info span {
    font-size: 12px;
    color: var(--text-gray);
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ─── MEDIA QUERIES PARA TESTIMONIOS ─── */
@media (max-width: 1024px) {
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 768px) {
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-section { padding: 80px 20px; }
    .testimonial-card { padding: 30px; }
}
/* ==========================================================================
   ─── SECCIÓN CONTACTO Y FOOTER (CONTACT & FOOTER) ───
   ========================================================================== */
.contact-section {
    padding: 100px 40px;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

/* Columna de Información */
.contact-tagline {
    display: block;
    color: var(--brand-yellow);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.contact-title {
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.contact-subtitle {
    color: var(--text-gray);
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 45px;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.item-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--text-gray);
    letter-spacing: 1px;
    font-weight: 700;
}

.item-link {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.item-link:hover {
    color: var(--brand-yellow);
}

.item-text {
    font-size: 16px;
    line-height: 1.5;
    color: var(--text-white);
}

/* Columna del Formulario */
.contact-form-column {
    background-color: var(--bg-card);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.premium-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--text-white);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    background-color: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 14px 18px;
    color: var(--text-white);
    font-size: 14px;
    border-radius: 0; /* Mantiene la estética de cortes duros industriales */
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--brand-yellow);
    background-color: #141414;
}

/* Selector nativo oscuro para consistencia */
.form-group select option {
    background-color: #111;
    color: var(--text-white);
}

.btn-form-submit {
    background-color: var(--brand-yellow);
    color: var(--bg-dark);
    border: none;
    padding: 18px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.btn-form-submit:hover {
    background-color: #fff;
    color: var(--bg-dark);
}

/* ==========================================================================
   ─── FOOTER STYLES ───
   ========================================================================== */
.main-footer {
    background-color: #050505;
    padding: 80px 40px 40px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

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

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-brand .logo-text {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.5px;
    color: var(--text-white);
    display: block;
    margin-bottom: 15px;
}

.footer-brand .yellow-dot {
    color: var(--brand-yellow);
}

.footer-brand p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 320px;
}

.footer-links h4,
.footer-social h4 {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-white);
    letter-spacing: 1px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 14px;
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--brand-yellow);
}

.instagram-link {
    font-size: 15px;
    color: var(--brand-yellow);
    text-decoration: none;
    font-weight: 500;
}

.instagram-link:hover {
    text-decoration: underline;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.2);
}

/* ─── MEDIA QUERIES PARA CONTACTO Y FOOTER ─── */
@media (max-width: 1024px) {
    .contact-grid { grid-template-columns: 1fr; gap: 50px; }
    .footer-top { grid-template-columns: 1.2fr 0.9fr 0.9fr; gap: 40px; }
}

@media (max-width: 768px) {
    .contact-section { padding: 80px 20px; }
    .contact-form-column { padding: 30px 20px; }
    .item-link { font-size: 18px; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
}
/* Contenedor del mapa responsivo */
.contact-map-column {
    width: 100%;
    height: 100%;
    min-height: 450px; /* Asegura buena altura en PC */
}

.map-wrapper {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    filter: grayscale(1) invert(0.9) contrast(1.2); /* Hace que el mapa adopte la estética oscura/dark del sitio */
    transition: filter 0.3s ease;
}

.map-wrapper:hover {
    filter: grayscale(0) invert(0) contrast(1); /* Devuelve el color natural al interactuar */
}

/* Estilos de Redes Sociales en Contacto */
.contact-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.social-link-item {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link-item span {
    color: var(--brand-yellow);
    font-size: 14px;
    text-transform: uppercase;
    display: inline-block;
    width: 90px; /* Alinea los textos */
}

.social-link-item:hover {
    color: var(--brand-yellow);
}

/* Ajuste responsivo */
@media (max-width: 992px) {
    .contact-map-column, .map-wrapper {
        min-height: 350px; /* Un poco más pequeño en tablets y móviles */
    }
}
/* ==========================================================================
   ─── SECCIÓN ALQUILER DE VEHÍCULOS (CAR RENTAL) ───
   ========================================================================== */
.rental-section {
    padding: 100px 40px;
    background-color: #0d0d0d; /* Fondo oscuro alternado */
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

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

.rental-tagline {
    display: block;
    color: var(--brand-yellow);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 10px;
}

.rental-title {
    font-size: 36px;
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.rental-subtitle {
    color: var(--text-gray);
    font-size: 15px;
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

/* Barra de Requisitos */
.rental-requirements {
    display: flex;
    justify-content: space-between;
    background-color: var(--bg-card);
    padding: 20px 40px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    margin-bottom: 50px;
    gap: 20px;
}

.req-item {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-white);
    display: flex;
    align-items: center;
    gap: 10px;
}

.req-item span {
    color: var(--brand-yellow);
    font-family: monospace;
}

/* Cuadrícula */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Tarjeta de Alquiler */
.rental-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.rental-card:hover {
    transform: translateY(-5px);
    border-color: rgba(243, 198, 35, 0.2);
}

.rental-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    background-color: #000;
}

.rental-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-category {
    position: absolute;
    top: 15px;
    left: 15px;
    background-color: var(--brand-yellow);
    color: var(--bg-dark);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Detalles */
.rental-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.rental-car-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.rental-car-features {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.4;
}

.rental-price-box {
    margin-top: auto;
    margin-bottom: 25px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.price-amount {
    font-size: 32px;
    font-weight: 900;
    color: var(--brand-yellow);
}

.price-period {
    font-size: 14px;
    color: var(--text-gray);
}

/* Acción */
.btn-rental-wa {
    display: block;
    text-align: center;
    background-color: transparent;
    border: 1px solid #25D366;
    color: #25D366;
    padding: 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.btn-rental-wa:hover {
    background-color: #25D366;
    color: #fff;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.15);
}

.rental-disclaimer {
    font-size: 12px;
    color: var(--text-gray);
    text-align: center;
    font-style: italic;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ─── MEDIA QUERIES RENTAL ─── */
@media (max-width: 1024px) {
    .rental-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .rental-requirements { grid-template-columns: repeat(2, 1fr); display: grid; padding: 20px; }
}

@media (max-width: 768px) {
    .rental-grid { grid-template-columns: 1fr; }
    .rental-requirements { grid-template-columns: 1fr; }
    .rental-section { padding: 80px 20px; }
}       
/* ==========================================================================
   ─── SECCIÓN TÍTULOS Y TRÁMITES (TITLES & LEGAL DOCS) ───
   ========================================================================== */
.docs-section {
    padding: 100px 40px;
    background-color: var(--bg-dark);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
    position: relative;
}

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

.docs-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    align-items: center;
}

/* Columna de Texto */
.docs-tagline {
    display: block;
    color: var(--brand-yellow);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.docs-title {
    font-size: 42px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.docs-subtitle {
    color: var(--text-gray);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Caja de Garantía */
.docs-badge-box {
    display: flex;
    gap: 20px;
    background-color: var(--bg-card);
    padding: 25px;
    border-left: 3px solid var(--brand-yellow);
    border-top: 1px solid rgba(255, 255, 255, 0.02);
}

.badge-icon {
    background-color: rgba(243, 198, 35, 0.1);
    color: var(--brand-yellow);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
}

.badge-text h4 {
    font-size: 15px;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 5px;
}

.badge-text p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.4;
}

/* Columna de Servicios (Tarjetas) */
.services-subgrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.doc-service-card {
    background-color: var(--bg-card);
    padding: 35px 30px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    position: relative;
    transition: all 0.3s ease;
}

.doc-service-card:hover {
    border-color: rgba(243, 198, 35, 0.3);
    transform: translateY(-3px);
}

.card-num {
    font-size: 12px;
    font-family: monospace;
    color: var(--brand-yellow);
    font-weight: 700;
    margin-bottom: 15px;
    display: block;
}

.doc-service-card h3 {
    font-size: 18px;
    color: var(--text-white);
    font-weight: 700;
    margin-bottom: 10px;
}

.doc-service-card p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.5;
}

/* Botón inferior */
.docs-action-wrapper {
    margin-top: 35px;
}

.btn-docs-wa {
    display: inline-block;
    background-color: var(--brand-yellow);
    color: var(--bg-dark);
    padding: 18px 35px;
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-docs-wa span {
    display: inline-block;
    transition: transform 0.3s ease;
    margin-left: 5px;
}

.btn-docs-wa:hover {
    background-color: #fff;
}

.btn-docs-wa:hover span {
    transform: translateX(5px);
}

/* ─── MEDIA QUERIES PARA TRÁMITES ─── */
@media (max-width: 1200px) {
    .docs-grid { grid-template-columns: 1fr; gap: 50px; }
    .docs-title { font-size: 36px; }
}

@media (max-width: 768px) {
    .docs-section { padding: 80px 20px; }
    .services-subgrid { grid-template-columns: 1fr; gap: 20px; }
    .btn-docs-wa { width: 100%; text-align: center; }
}