/* NEXA TELECOM - Custom Styles */

/* Core Brand Colors Definition */
:root {
    --primary-color: #1F2B48;
    --secondary-color: #C7C9CB;
    --white: #FFFFFF;
}

/* Background Brand Classes (Statically defined for offline/immediate rendering) */
.bg-primary {
    background-color: var(--primary-color) !important;
}

.bg-primary-container {
    background-color: var(--primary-color) !important;
}

/* Brand Text Classes */
.text-primary {
    color: var(--primary-color) !important;
}

.text-on-primary {
    color: var(--white) !important;
}

/* Override light blue/unbranded container texts to Metallic Silver */
.text-on-primary-container {
    color: var(--secondary-color) !important;
}

/* Footer Specific Overrides */
footer, footer p, footer div {
    color: var(--secondary-color) !important;
}

footer a {
    color: var(--secondary-color) !important;
    text-decoration: none;
}

footer a:hover {
    color: var(--white) !important;
}

/* Glassmorphism Cards */
.glass-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(199, 201, 203, 0.3);
}

/* WhatsApp Pulse Animation (Using Company Navy/Silver tint) */
.whatsapp-pulse {
    animation: pulse-nexa 2s infinite;
}

@keyframes pulse-nexa {
    0% {
        box-shadow: 0 0 0 0 rgba(199, 201, 203, 0.6);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(199, 201, 203, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(199, 201, 203, 0);
    }
}

/* Material Symbols Outlined Configuration */
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

#mobile-menu.hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    display: none !important;
}

#mobile-menu:not(.hidden) {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
    display: block !important;
}
