﻿
/*.dropdown-toggle {
    background: linear-gradient(45deg, #667eea, #764ba2);
    border: none;
    border-radius: 10px;
    padding: 12px 20px;
    color: white;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
}

    .dropdown-toggle:hover {
        background: linear-gradient(45deg, #5a67d8, #6b46c1);
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
    }

.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    padding: 10px 0;
    animation: dropdownSlide 0.3s ease;
}

@keyframes dropdownSlide {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item {
    padding: 12px 20px;
    transition: all 0.2s ease;
}

    .dropdown-item:hover {
        background: linear-gradient(45deg, #667eea, #764ba2);
        color: white;
        transform: translateX(5px);
    }*/

/* Estilos específicos para móvil */
@media (max-width: 768px) {
    .mobile-offset {
        position: fixed !important;
        bottom: 20px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        top: auto !important;
        width: calc(100% - 40px) !important;
        max-width: 350px !important;
        z-index: 1050 !important;
        margin: 0 !important;
        border-radius: 15px !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        animation: slideUpMobile 0.3s ease !important;
    }

    @keyframes slideUpMobile {
        from {
            opacity: 0;
            transform: translateX(-50%) translateY(100px);
        }

        to {
            opacity: 1;
            transform: translateX(-50%) translateY(0);
        }
    }

    .mobile-offset .dropdown-item {
        padding: 15px 20px;
        font-size: 16px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }

        .mobile-offset .dropdown-item:last-child {
            border-bottom: none;
        }


    .dropdown-item {
        padding: 12px 20px;
        transition: all 0.2s ease;
        font-size:larger;
    }
    /* Overlay para cerrar el dropdown */
    .mobile-dropdown-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1040;
        opacity: 0;
        animation: fadeInOverlay 0.3s ease forwards;
    }

    @keyframes fadeInOverlay {
        to {
            opacity: 1;
        }
    }
}
