/* Estilos para el sombrero en el menú */
        .menu-logo-container {
            position: relative;
            display: inline-block;
        }
        
        .menu-hat-icon {
            position: absolute;
            width: 24px;  /* Tamaño fijo en píxeles */
            height: 24px;
            transform: rotate(-15deg);
            top: -8px;   /* Posición fija relativa al contenedor */
            left: -7px;
            z-index: 10;
            filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
        }
        
        
        
        .footer-hat-icon {
            position: absolute;
            width: 24px;  /* Tamaño fijo en píxeles */
            height: 24px;
            transform: rotate(-15deg);
            top: -7px;   /* Posición fija relativa al contenedor */
            left: -6px;
            z-index: 10;
            filter: drop-shadow(2px 2px 3px rgba(0, 0, 0, 0.3));
        }
        
        
        /* Resto de estilos */
        .menu-item {
            position: relative;
        }
        
        .menu-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            transition: width 0.3s ease;
        }
        
        .menu-item:hover::after {
            width: 100%;
        }
        
        
        
        /* Menú móvil */
        .mobile-menu {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease-out;
        }
        
        .mobile-menu.open {
            max-height: 1000px;
        }
        
        .hamburger span {
            display: block;
            width: 25px;
            height: 3px;
            margin: 5px auto;
            background-color: white;
            transition: all 0.3s ease-in-out;
        }
        
        .hamburger.active span:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
        
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger.active span:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }


        .gradient-text {
            background: linear-gradient(90deg, #3b82f6, #8b5cf6);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .profile-dropdown {
            display: none;
            position: absolute;
            right: 0;
            background: #1f2937;
            border-radius: 0.375rem;
            padding: 0.5rem;
            min-width: 120px;
            z-index: 50;
        }
        
        .profile-container:hover .profile-dropdown {
            display: block;
        }

        .herramientas-class{
            cursor: pointer;
        }

/* Estilos para el footer pegado al fondo */
footer {
    margin-top: auto;
}

/* Asegurar que el contenido principal ocupe el espacio disponible */
.main-content {
    flex: 1;
}