/* =========================
   HEADER
========================= */
.header {
    background: linear-gradient(135deg, #ff2e93, #c91874); /* 🔥 FIOSHA */
    height: 120px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    overflow: visible;
}

/* =========================
   CONTENEDOR
========================= */
.contenedor-header {
    display: flex;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
}

/* =========================
   LOGO
========================= */
.logo-header {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    padding-right: 20px;
}

.logo-header img {
    height: 150px;
    width: auto;
    display: block;
}

/* =========================
   MENÚ
========================= */
.menu {
    display: flex;
    align-items: center;
    width: 100%;
    margin-left: 40px;
}

/* LINKS */
.menu a {
    margin-right: 25px;
    font-size: 18px;
    font-weight: 600;
    color: #faf9f6;
    text-decoration: none;
    white-space: nowrap;
    transition: 0.3s;
}

.menu a:hover {
    color: #ffaad4; /* 🔥 FIOSHA CLARO */
    transform: translateY(-2px);
}

/* =========================
   DROPDOWN (CLICK)
========================= */
.dropdown {
    position: relative;
}

.dropbtn {
    cursor: pointer;
}

/* 🔥 MENÚ DESPLEGABLE */
.dropdown-content {
    display: none;
    position: absolute;
    top: 110%;
    left: 0;
    background: linear-gradient(135deg, #ff2e93, #c91874); /* 🔥 FIOSHA */
    min-width: 210px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    z-index: 999;
}

/* ACTIVAR */
.dropdown-content.show {
    display: block;
}

/* LINKS DROPDOWN */
.dropdown-content a {
    display: block;
    padding: 12px 18px;
    font-size: 15px;
    color: #fff0f7;
    transition: 0.3s;
}

.dropdown-content a:hover {
    background: #ff2e93;
    color: #fff;
}

/* =========================
   USUARIO
========================= */
.usuario {
    margin-left: auto;
    margin-right: 15px;
    color: #fff0f7;
}

/* =========================
   BOTONES
========================= */
.btn-login,
.btn-salir {
    padding: 6px 14px;
    border-radius: 20px;
    background: #ff4da6; /* 🔥 FIOSHA */
    color: white !important;
    font-weight: bold;
    margin-left: auto;
    transition: 0.3s;
}

.btn-login:hover,
.btn-salir:hover {
    background: #c91874;
    transform: scale(1.05);
}

/* =========================
   ADMIN
========================= */
.admin-title {
    display: block;
    padding: 8px 18px 4px;
    font-size: 12px;
    font-weight: bold;
    color: #ffe3f0;
    opacity: 0.9;
}

.admin-dropdown hr {
    border: none;
    border-top: 1px solid rgba(255,255,255,0.3);
    margin: 5px 10px;
}

/* =========================
   RESPONSIVE TABLET
========================= */
@media (max-width: 1024px) {

    .header {
        height: auto;
        padding: 15px;
    }

    .contenedor-header {
        flex-direction: column;
        align-items: center;
    }

    .logo-header img {
        height: 120px;
    }

    .menu {
        flex-wrap: wrap;
        justify-content: center;
        margin-left: 0;
        margin-top: 10px;
    }

    .menu a {
        margin: 10px;
        font-size: 16px;
    }

    .usuario {
        margin-left: 0;
    }
}

/* =========================
   RESPONSIVE CELULAR
========================= */
@media (max-width: 600px) {

    .logo-header img {
        height: 90px;
    }

    .menu {
        flex-direction: column;
        align-items: center;
    }

    .menu a {
        margin: 8px 0;
        font-size: 15px;
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        margin-top: 5px;
    }

    .dropdown-content a {
        text-align: center;
    }
}