/* =========================================
   PALETA Y BÁSICOS (Azul Corporativo y Blanco)
   ========================================= */
:root {
    --n1-blue: #0033a0;         
    --n1-dark-blue: #001244;    
    --n1-cyan: #00d4ff;         
    --n1-white: #ffffff;        
    --n1-gold: #ffcc00;         
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--n1-dark-blue);
    color: var(--n1-white); 
    overflow-x: hidden;
    margin: 0;
}

h1, h2, h3 { font-weight: 900; text-transform: uppercase; }

.text-gold { color: var(--n1-white) !important; }
.title-glow { text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.4); }

/* =========================================
   CONTENEDOR 3D (Fondo Azul Degradado)
   ========================================= */
#three-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background: radial-gradient(circle at center, var(--n1-blue) 0%, var(--n1-dark-blue) 100%);
}

/* NAVBAR CRISTAL */
.glass-nav {
    background: rgba(0, 18, 68, 0.4) !important;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 0;
}
.nav-link { font-weight: 700; color: rgba(255, 255, 255, 0.8) !important; transition: 0.3s; }
.nav-link:hover { color: var(--n1-white) !important; text-shadow: 0 0 10px rgba(255,255,255,0.5); }

/* =========================================
   BOTÓN RENTA YA
   ========================================= */
.btn-aggressive {
    background: var(--n1-white);
    color: var(--n1-blue) !important;
    font-weight: 900;
    font-size: 1.2rem;
    padding: 15px 40px;
    border-radius: 4px;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    transform: skewX(-10deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.btn-aggressive span { display: inline-block; transform: skewX(10deg); }
.btn-aggressive:hover {
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.6);
    transform: skewX(-10deg) scale(1.05);
    background: var(--n1-cyan); 
    color: var(--n1-dark-blue) !important;
}

/* =========================================
   SHOWROOM FLUIDO
   ========================================= */
.showroom-section { padding: 80px 0; position: relative; z-index: 2; }

.swiper {
    width: 100%;
    padding: 50px 0 80px 0;
}

.swiper-slide {
    width: 400px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.6s ease;
}

.car-img {
    width: 100%;
    height: auto;
    z-index: 10;
    opacity: 0.6;
    transform: scale(0.8) translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    filter: drop-shadow(0px 15px 15px rgba(0,0,0,0.6));
}

.podium {
    position: absolute;
    bottom: 50px;
    width: 70%;
    height: 40px;
    background: var(--n1-cyan);
    border-radius: 50%;
    transform: rotateX(75deg);
    box-shadow: 0 0 50px var(--n1-cyan);
    z-index: 1;
    opacity: 0;
    transition: all 0.6s ease;
}

.swiper-slide-active .car-img {
    opacity: 1;
    transform: scale(1.1) translateY(0);
    filter: drop-shadow(0px 30px 25px rgba(0,0,0,0.8));
}
.swiper-slide-active .podium { opacity: 0.5; }

.car-info {
    margin-top: 20px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}
.swiper-slide-active .car-info { opacity: 1; transform: translateY(0); }
.swiper-button-next, .swiper-button-prev { color: var(--n1-white) !important; filter: drop-shadow(0 0 5px rgba(255,255,255,0.5)); }

/* =========================================
   TARJETAS ELEGANTES
   ========================================= */
.info-section { position: relative; z-index: 2; padding-bottom: 100px; }

.glass-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(20px); 
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-top: 3px solid var(--n1-white);
    border-radius: 16px;
    padding: 35px 25px;
    height: 100%;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}
.glass-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3); 
}

.glass-card h4 { color: var(--n1-white) !important; }
.glass-card h4 i { color: var(--n1-cyan) !important; }
.glass-card .text-primary { color: var(--n1-cyan) !important; }
.list-custom li { margin-bottom: 15px; font-size: 0.95rem; color: rgba(255, 255, 255, 0.9); }
.alert-card { border-top-color: #ff4d4d; }

/* BOTÓN CONTACTO NAVBAR */
.btn-contacto {
    background-color: var(--n1-white);
    color: var(--n1-blue) !important;
    font-weight: 800;
    border-radius: 50px;
    padding: 10px 30px;
    letter-spacing: 1px;
    transition: 0.3s;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}
.btn-contacto:hover {
    background-color: var(--n1-cyan);
    color: var(--n1-dark-blue) !important;
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.5);
}

/* =========================================
   CONTACTO Y REDES SOCIALES
   ========================================= */
.social-link { transition: 0.3s; }
.social-link:hover { color: var(--n1-cyan) !important; transform: scale(1.05); }

.fb-color { color: #1877F2; }

/* AQUÍ ESTÁ LA CORRECCIÓN PARA EL CELULAR */
.ig-color { 
    color: #E1306C; /* Respaldo para móviles */
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block; /* Esta línea arregla que desaparezca en móviles */
}

/* =========================================
   MENÚ FLOTANTE WHATSAPP (SPEED DIAL)
   ========================================= */
.floating-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.whatsapp-options {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.floating-container:hover .whatsapp-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wa-option {
    background: #25D366;
    color: white !important;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wa-option:hover {
    background: #128C7E;
    transform: scale(1.05);
}

.btn-whatsapp-main {
    background: #25D366;
    color: #fff;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-container:hover .btn-whatsapp-main {
    background: #128C7E;
    transform: rotate(360deg); 
}