/* ========================================
   DROPDOWN MENU UNIFICADO
======================================== */

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown a {
    display: flex;
    align-items: center;
    color: #b3b3b3; 
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
}

.dropdown a:hover {
    color: var(--tenant-accent, #d4af37);
}

.arrow {
    font-size: 0.8rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .arrow {
    transform: rotate(180deg);
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(var(--tenant-accent-rgb, 212, 175, 55), 0.2);
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 200px;
    padding: 0.5rem 0;
    display: block;
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 0.8rem 1.2rem;
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
    font-weight: normal;
}

.dropdown-content a:hover {
    background: rgba(var(--tenant-accent-rgb, 212, 175, 55), 0.1);
    border-left-color: var(--tenant-accent, #d4af37);
    color: var(--tenant-accent, #d4af37);
    transform: translateX(5px);
}

/* Mobile Dropdown */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: transparent;
        padding: 0;
        margin-top: 0.5rem;
        display: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 0.6rem 1rem;
        border-left: none;
        border-bottom: 1px solid rgba(var(--tenant-accent-rgb, 212, 175, 55), 0.1);
    }
    
    .dropdown-content a:hover {
        transform: none;
        border-left: none;
    }
}