/* Estilos extra¨ªdos del script */

body, #wrapper, header, .navbar, .navbar-default, .callaction, #content {
    background-color: #0c0c0e !important;
    background-image: radial-gradient(circle at center, #7a0b0b 0%, #0c0c0e 70%) !important;
    background-attachment: fixed !important;
    color: #ffffff !important;
}

/* Botones con fondo s¨®lido */
.btn-custom-action {
    padding: 12px 25px !important;
    border-radius: 50px !important;
    font-weight: bold !important;
    font-size: 14px !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.btn-reclamos {
    background: #e01e1e !important;
    color: #ffffff !important;
}

.btn-aplicaciones {
    background: rgba(0, 0, 0, 0.6) !important;
    color: #ffffff !important;
    border: 1px solid #e01e1e !important;
}

.btn-custom-action:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.4) !important;
}

/* ... sigue con el resto del CSS (productos, footer, men¨², etc.) ... */

/* Finaliza con el bloque @media que ten¨ªas al final */
@media (max-width: 991px) {
    .unique-nav-container { flex-direction: column !important; gap: 15px !important; }
    .navbar-default .navbar-nav.custom-horizontal-menu { flex-wrap: wrap !important; justify-content: center !important; height: auto !important; border-radius: 15px !important; padding: 10px !important; }
    .producto-card-premium { width: 100% !important; max-width: 340px !important; }
    .footer-flex-grid { flex-direction: column !important; gap: 40px !important; }
    .unique-social-column { max-width: 100% !important; }
    .sub-footer-layout { flex-direction: column !important; text-align: center !important; }
}

/* --- Estilos para tarjetas con m¨¢xima especificidad --- */

/* Usamos selectores dobles para ganar prioridad sobre cualquier archivo anterior */
#content .box-moderno {
    background-color: #1a1a1c !important;
    padding: 30px !important;
    border-radius: 12px !important;
    border: 1px solid #333 !important;
    margin-bottom: 30px !important;
}

#content .box-moderno h4 {
    color: #ffffff !important;
    margin-bottom: 20px !important;
    font-weight: bold !important;
}

#content .box-moderno p {
    color: #ffffff !important;
    line-height: 1.6 !important;
    text-align: justify !important;
}

/* Forzamos el color de los iconos dentro de las cajas */
#content .box-moderno i {
    color: #e01e1e !important;
    display: block !important;
    margin-bottom: 20px !important;
}