/*=================================================================================
  ESTILOS ESPECÍFICOS PARA ADMIN DASHBOARD
=================================================================================*/

.admin-hero {
    background: linear-gradient(135deg, #0c1a2a 0%, #1a3a5f 100%);
    color: white;
    padding: 80px 0 60px;
    margin-top: -20px;
    margin-bottom: 40px;
    position: relative;
    overflow: hidden;
}

.admin-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=1500&q=80') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 1;
}

.admin-hero .container {
    position: relative;
    z-index: 2;
}

.admin-card {
    background: rgba(25, 45, 70, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 153, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    color: #e0e0e0;
    height: 100%;
}

.admin-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 153, 0, 0.5);
}

.admin-icon {
    font-size: 2.5rem;
    color: var(--orange-accent);
    margin-bottom: 15px;
}

.stats-card {
    background: rgba(25, 45, 70, 0.7);
    border-radius: 10px;
    border: 1px solid rgba(255, 153, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.stats-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.hero-icon {
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/*=================================================================================
  ESTILOS PARA MENÚ HAMBURGUESA EN ADMIN
=================================================================================*/

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    gap: 3px;
}

.nav-toggle .hamburger {
    width: 25px;
    height: 3px;
    background-color: var(--orange-accent);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Estilos responsive para el menú móvil */
@media (max-width: 768px) {
    .admin-hero {
        padding: 60px 0 40px;
    }
    
    .admin-hero h1 {
        font-size: 2rem;
    }
    
    .stats-card, .admin-card {
        margin-bottom: 20px;
    }
    
    .admin-icon {
        font-size: 2rem;
    } /* ← AQUÍ FALTABA ESTA LLAVE DE CIERRE */

    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: rgba(10, 25, 47, 0.95);
        backdrop-filter: blur(10px);
        padding: 20px 0;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }
    
    .nav-menu a {
        display: block;
        padding: 12px 15px;
        border-radius: 5px;
        text-align: center;
    }
    
    .auth-buttons {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        padding: 0 20px;
    }
    
    .user-actions {
        flex-direction: column;
        width: 100%;
        gap: 10px;
        text-align: center;
    }
    
    .user-welcome-text {
        text-align: center;
        margin-bottom: 10px;
    }
}