/* ==========================================================================
   MENU ESTILIZADO CON BOOTSTRAP 5 - COENEO
   ========================================================================== */
:root {
    --coeneo-red: #e51d25;
    --coeneo-pink: #fbcfe8;
    --coeneo-pink-text: #be185d;
    --coeneo-dark: #1e293b;
}

.coeneo-header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1030;
    background: #ffffff;
}

.coeneo-logo-img {
    height: 75px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.coeneo-logo-img:hover {
    transform: scale(1.03);
}

/* Buscador Estilizado */
.coeneo-search-box {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 4px 12px;
}

.coeneo-search-box input:focus {
    box-shadow: none;
}

/* Links y Estados Hover */
.navbar-nav .nav-link {
    color: #475569;
    font-size: 0.88rem;
    padding: 4px 8px !important;
    transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--coeneo-red) !important;
}

/* Dropdown Personalizado con Hover Rojo */
.dropdown-menu {
    min-width: 280px;
    padding: 8px 0;
}

.dropdown-item {
    font-size: 0.85rem;
    color: #334155;
    padding: 8px 16px;
    transition: all 0.2s ease;
}

.dropdown-item:hover {
    background-color: var(--coeneo-red) !important;
    color: #ffffff !important;
}

/* Animación Cortina Rosa GSAP */
.coeneo-banner-wrapper {
    position: relative;
    width: 100%;
    height: 38px;
    overflow: hidden;
    background: #000000;
}

.banner-curtain-black {
    position: absolute;
    inset: 0;
    background: #000000;
    z-index: 2;
}

.banner-pink-bar {
    position: absolute;
    inset: 0;
    background: var(--coeneo-pink);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-pink-bar span {
    color: var(--coeneo-pink-text);
    font-weight: 800;
    letter-spacing: 2px;
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 1199.98px) {
    .coeneo-logo-img {
        height: 60px;
    }

    .navbar-collapse {
        background: #ffffff;
        padding: 15px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        margin-top: 10px;
    }
}