/* ==========================================================================
   ESTILOS PREMIUM UNIFICADOS: PÁGINA BELLABOT (PC & MÓVIL)
   ========================================================================== */

/* --- CONFIGURACIÓN GENERAL --- */
.vicon-bellabot-premium {
    font-family: 'Inter', 'Segoe UI', Roboto, sans-serif;
    color: #2c3e50;
    background-color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

.nova-container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cabeceras de Sección */
.nova-title-center {
    text-align: center;
    margin-bottom: 55px;
}

.nova-title-center h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.nova-underline {
    width: 60px;
    height: 4px;
    background: #00a650;
    margin: 0 auto;
}


/* ==========================================================================
   1. SECCIÓN HERO (Secuencial: Video compacto + Contenido en Fondo Blanco)
   ========================================================================== */
.nova-hero {
    width: 100%;
    display: flex;
    flex-direction: column; 
    margin-top: 0;
    background: #ffffff;
}

/* Bloque del video superior (Altura reducida a 70vh) */
.nova-hero-media {
    position: relative;
    width: 100%;
    height: 92vh; /* Altura más balanceada y compacta */
    overflow: hidden;
    background: #000000;
}

.nova-hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Bloque inferior modificado con fondo blanco y tipografías oscuras */
.nova-hero-content-block {
    width: 100%;
    padding: 80px 0;      
    background: #ffffff; /* Fondo cambiado a blanco absoluto */
}

.nova-hero-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.nova-brand {
    font-size: 0.85rem;
    font-weight: 700;
    color: #00a650;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

/* Textos cambiados a negros y grises para fondo blanco */
.nova-hero-text h1 {
    font-size: 4rem;
    font-weight: 800;
    color: #111111; /* Negro profundo */
    margin: 0 0 20px 0;
    letter-spacing: -1px;
    line-height: 1.1;
}

.nova-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    color: #334155; /* Gris pizarra oscuro */
    line-height: 1.4;
    margin-bottom: 25px;
}

.nova-desc {
    font-size: 1.05rem;
    color: #64748b; /* Gris medio elegante */
    margin-bottom: 40px;
}

.nova-btn {
    display: inline-block;
    background: #00a650;
    color: #ffffff;
    padding: 15px 38px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.nova-btn:hover {
    background: #008540;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 166, 80, 0.4);
}

.nova-hero-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nova-hero-img img {
    max-width: 90%;  
    height: auto;
    display: block;
    object-fit: contain;
}


/* ==========================================================================
   2. SECCIÓN CARACTERÍSTICAS (Bloques Limpios)
   ========================================================================== */
.nova-features {
    padding: 80px 0;
    background: #ffffff;
    border-top: 1px solid #eaeaea; /* Separación sutil del hero */
}

.nova-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.nova-f-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 35px 25px;
    transition: all 0.3s ease;
}

.nova-f-card:hover {
    border-color: #00a650;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.nova-f-num {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(0, 166, 80, 0.15);
    margin-bottom: 15px;
}

.nova-f-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
}

.nova-f-card p {
    font-size: 0.95rem;
    color: #666666;
    margin: 0;
}


/* ==========================================================================
   3. ESPECIFICACIONES TÉCNICAS (Tabla Minimalista)
   ========================================================================== */
.nova-tech-specs {
    padding: 80px 0;
    background: #f8f9fa;
}

.nova-tech-wrapper {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 50px;
    align-items: center;
}

.nova-tech-img img {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.nova-tech-text h2 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 15px;
}

.nova-tech-text p {
    color: #666666;
    margin-bottom: 30px;
}

.nova-spec-table {
    width: 100%;
}

.nova-spec-row {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #e2e8f0;
}

.nova-spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: #444444;
}

.spec-value {
    color: #666666;
    text-align: right;
}


/* ==========================================================================
   4. SECCIÓN GALERÍA DE IMÁGENES
   ========================================================================== */
.nova-gallery-section {
    padding: 80px 0;
    background: #ffffff;
}

.nova-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 30px;
}

.nova-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #f5f5f5;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.nova-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s ease;
}

.nova-gallery-item:hover img {
    transform: scale(1.06);
    filter: brightness(0.88);
}


/* ==========================================================================
   5. VISOR INTERACTIVO EMERGENTE (LIGHTBOX MODAL)
   ========================================================================== */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(12, 12, 12, 0.96);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.lightbox-content-wrapper {
    max-width: 85%;
    max-height: 80%;
    text-align: center;
    position: relative;
}

.lightbox-img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: 6px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.6);
    object-fit: contain;
}

#lightboxCaption {
    color: #ffffff;
    margin-top: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.lightbox-close {
    position: absolute;
    top: 25px;
    right: 35px;
    color: #ffffff;
    font-size: 42px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
    user-select: none;
}

.lightbox-close:hover {
    color: #00a650;
    transform: scale(1.05);
}

.lightbox-nav {
    position: absolute;
    background: rgba(255, 255, 255, 0.07);
    border: none;
    color: #ffffff;
    font-size: 24px;
    padding: 18px 22px;
    cursor: pointer;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    user-select: none;
}

.lightbox-nav:hover {
    background: #00a650;
    color: #ffffff;
    transform: translateY(-50%) scale(1.05);
}

.nav-prev { left: 40px; }
.nav-next { right: 40px; }


/* ==========================================================================
   6. RESPONSIVE DESIGN (DISEÑO OPTIMIZADO PARA TABLETS Y MÓVILES)
   ========================================================================== */

/* Tablets y pantallas intermedias (Max 992px) */
@media (max-width: 992px) {
    .nova-hero-media {
        height: 45vh; /* Ajuste del video más compacto para tablets */
    }
    .nova-hero-content-block {
        padding: 60px 0;
    }
    .nova-hero-text h1 { 
        font-size: 3rem; 
    }
    .nova-hero-wrapper { 
        grid-template-columns: 1fr; 
        text-align: center; 
        gap: 40px;
    }
    .nova-hero-img img {
        max-width: 60%;
    }
    .nova-tech-wrapper { 
        grid-template-columns: 1fr; 
        gap: 40px; 
    }
    .nova-tech-img img {
        max-width: 60%;
    }
    .nova-gallery-grid {
        grid-template-columns: repeat(3, 1fr); 
    }
}

/* Teléfonos móviles (Max 768px) */
@media (max-width: 768px) {
    .nova-hero-media {
        height: 35vh; /* Video muy compacto y cómodo en móviles */
    }
    .nova-hero-content-block {
        padding: 50px 0 30px 0;
    }
    .nova-hero-text h1 { 
        font-size: 2.3rem; 
    }
    .nova-subtitle { 
        font-size: 1.15rem; 
    }
    .nova-desc { 
        font-size: 0.95rem; 
        margin-bottom: 25px;
    }
    .nova-hero-img img {
        max-width: 75%;
    }
    .nova-title-center h2 { 
        font-size: 1.8rem; 
    }
    
    /* Sección Técnica */
    .nova-tech-text h2 { 
        font-size: 1.8rem; 
    }
    .nova-spec-row { 
        font-size: 0.9rem; 
    }

    /* Galería */
    .nova-gallery-grid {
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }
    
    /* Lightbox */
    .lightbox-nav {
        padding: 12px 16px;
        font-size: 18px;
    }
    .nav-prev { left: 15px; }
    .nav-next { right: 15px; }
}