/* ==========================================================================
   ALCAZAR S.A. - Hoja de Estilos Personalizada (style.css)
   Distribuidor Autorizado Claro Nicaragua | RUC: J0310000443700
   Colores oficiales y clases auxiliares para maquetación Elementor/Web
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* Aplicación de fuente Inter por defecto */
body {
    font-family: 'Inter', sans-serif;
}

/* Reset general para elementos de navegación para que no hereden cajas o recuadros rojos del tema WP */
.nav-link,
header a,
footer a,
#mobile-menu a {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
    box-sizing: border-box !important;
    -webkit-tap-highlight-color: transparent !important;
}

/* Sombra corporativa con matiz Rojo ALCAZAR */
.brand-shadow {
    box-shadow: 0 10px 30px -10px rgba(208, 29, 38, 0.15);
}

/* Efecto hover interactivo para las tarjetas de servicios */
.brand-shadow-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.brand-shadow-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -15px rgba(208, 29, 38, 0.25);
}

/* Personalización de la barra de desplazamiento lateral */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: #FAF9F9; /* Off-white de fondo */
}

::-webkit-scrollbar-thumb {
    background: #D01D26; /* Rojo ALCAZAR */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94444E; /* Marsala Secundario */
}

/* Clases de animación fluidas para transiciones de pestañas y modales */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Reglas de ocultación de pestañas */
.tab-view {
    transition: opacity 0.3s ease;
}

.tab-view.hidden {
    display: none;
    opacity: 0;
}

.tab-view.active {
    display: block;
    opacity: 1;
}
