/* ==========================================================================
   PALETA DE COLORES OFICIAL DE CUITZEO
   ========================================================================== */
:root {
    --guinda-cuitzeo: #911A3A;
    --guinda-dark: #6e122a;
    --rosa-cuitzeo: #C83182;
    --dorado-cuitzeo: #C5A059;
    --gris-cuitzeo: #ADADAD;
    --bg-gradient-header: linear-gradient(180deg, #911A3A 0%, #7A1430 100%);
}

/* Header & Navbar Container */
.site-header-cuitzeo {
    background: var(--bg-gradient-header);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    border-bottom: 3px solid var(--dorado-cuitzeo);
}

.top-bar-cuitzeo {
    background-color: rgba(0, 0, 0, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-logo-cuitzeo {
    max-height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.text-rosa {
    color: var(--rosa-cuitzeo) !important;
}

/* Links Generales Navegación */
.navbar-cuitzeo .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 6px 12px !important;
    transition: all 0.25s ease;
    border-radius: 4px;
}

.navbar-cuitzeo .nav-link:hover {
    color: #ffffff !important;
    background-color: rgba(200, 49, 130, 0.25);
}

/* ESTILO PÍLDORA / BOCADILLO (COMO EN LA IMAGEN) */
.nav-pill-item {
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    font-weight: 800 !important;
    border-radius: 4px !important;
    position: relative;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2);
}

/* Flechita apuntando hacia abajo en el elemento activo */
.nav-pill-item.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #ffffff;
}

.nav-pill-rosa {
    background-color: rgba(255, 255, 255, 0.35) !important;
    color: #ffffff !important;
}

/* ESTILOS DE SUBMENÚS Y DESPLEGABLES */
.navbar-cuitzeo .dropdown-menu {
    background-color: var(--guinda-dark);
    border-left: 3px solid var(--rosa-cuitzeo) !important;
    padding: 8px 0;
    margin-top: 5px;
}

.navbar-cuitzeo .dropdown-item {
    color: #f3f3f3;
    font-size: 0.84rem;
    font-weight: 500;
    padding: 8px 18px;
    transition: all 0.2s ease;
}

.navbar-cuitzeo .dropdown-item:hover {
    background-color: var(--rosa-cuitzeo);
    color: #ffffff;
    padding-left: 22px;
}

/* Soporte para Submenús Multinivel (Dropend) en Hover para Escritorio */
@media (min-width: 1200px) {
    .navbar-cuitzeo .dropdown:hover > .dropdown-menu {
        display: block;
    }
    
    .navbar-cuitzeo .dropend:hover > .dropdown-menu {
        display: block;
        position: absolute;
        top: 0;
        left: 100%;
        margin-top: -8px;
    }
}

/* Estilos para el doble logotipo en el encabezado */
.header-logo-cuitzeo {
    max-height: 55px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.header-logo-pm {
    max-height: 48px;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.header-logo-pm:hover {
    transform: scale(1.05);
}

/* Divisor elegante entre ambos logos */
.brand-divider {
    width: 1px;
    height: 38px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(197, 160, 89, 0.8) 50%, rgba(255,255,255,0) 100%);
    margin: 0 4px;
}


/* ==========================================================================
   DESPLIEGUE MULTINIVEL MÓVIL (MENORES A 1200PX)
   ========================================================================== */
@media (max-width: 1199.98px) {

    /* Forzar que el submenú mantenga el flujo vertical */
    .navbar-cuitzeo .dropdown-menu .dropend .dropdown-menu {
        position: relative !important;
        top: 0 !important;
        left: 0 !important;
        transform: none !important;
        float: none !important;
        background-color: rgba(0, 0, 0, 0.3) !important;
        border-left: 3px solid var(--rosa-cuitzeo, #C83182) !important;
        margin: 5px 10px !important;
        padding-left: 10px !important;
        box-shadow: none !important;
    }

    .navbar-cuitzeo .dropdown-menu .dropdown-menu.show {
        display: block !important;
    }

    /* Icono indicador para submenús */
    .navbar-cuitzeo .dropdown-menu .dropdown-toggle::after {
        float: right;
        margin-top: 6px;
        transition: transform 0.2s ease;
    }
}