.elementor-46 .elementor-element.elementor-element-5980aab{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-7ac4ec3 *//* ==========================================================
   CENTRO DE DESCARGAS NOVASTAR - ESTILO B2B PREMIUM
========================================================== */

/* 1. Contenedor Principal */
.novastar-downloads-page {
    width: 100%;
    font-family: var(--font-main);
}

/* 2. Cabecera del Centro de Descargas */
.nd-header {
    text-align: center;
    margin-bottom: 60px;
}

.nd-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 15px;
}

.nd-subtitle {
    color: #a0a0a0;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 3. Títulos de Categoría */
.nd-category-title {
    color: #ffffff;
    font-size: 1.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
}

/* 4. Grid de Tarjetas */
.nd-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* 5. Tarjetas (Cards Blancas) */
.nd-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eeeeee;
    display: flex;
    flex-direction: column;
}

.nd-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

/* 6. Cabecera de la Tarjeta (Título y Badge) */
.nd-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #f1f1f1;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.nd-card-header h4 {
    color: #1a1a1a;
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Insignia (Ej: "Popular", "Flagship") */
.nd-badge {
    background-color: rgba(0, 95, 182, 0.1);
    color: var(--accent-color);
    font-size: 0.75rem;
    font-weight: 800;
    padding: 5px 10px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* 7. Botones de Descarga (Links al PDF) */
.nd-card-body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: auto; /* Empuja los botones hacia abajo si hay espacio extra */
}

.nd-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f8f9fa;
    color: #1e3350;
    padding: 15px 20px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid #eeeeee;
    transition: all 0.3s ease;
}

.nd-btn-text {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nd-arrow {
    font-weight: bold;
    color: #a0a0a0;
    transition: transform 0.3s ease, color 0.3s ease;
}

/* Efecto Hover del Botón de PDF */
.nd-btn:hover {
    background-color: var(--accent-color);
    color: #ffffff;
    border-color: var(--accent-color);
    box-shadow: 0 4px 15px rgba(0, 95, 182, 0.3);
}

.nd-btn:hover .nd-arrow {
    color: #ffffff;
    transform: translateX(5px); /* La flecha se mueve sutilmente a la derecha */
}

/* 8. Adaptación a Móviles */
@media (max-width: 768px) {
    .nd-title {
        font-size: 2.2rem;
    }
    
    .nd-grid {
        grid-template-columns: 1fr; /* Una sola columna en celulares */
        gap: 20px;
    }
    
    .nd-card {
        padding: 20px;
    }
}/* End custom CSS */