.footer-legal {
    text-align: center;
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.disclaimer-link {
    position: relative;
    left: -30px;
    top: -10px;
    background: none;
    border: none;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.disclaimer-link:hover {
    color: white;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.modal-content {
    background: linear-gradient(180deg, #00080F 2%, #00101E 48%, #002F4B 100%) !important;
    margin: 5% auto;
    padding: 2rem;
    border-radius: 8px;
    width: 90%;
    max-width: 800px;
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.close-modal {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2.5rem;
    cursor: pointer;
    color: #666;
    transition: color 0.3s ease;
    z-index: 1001;
}

.close-modal:hover {
    color: white;
}

.disclaimer-content {
    margin-top: 1rem;
}

.disclaimer-content h2 {
    margin-bottom: 1.5rem;
    color: white;
}

.disclaimer-content p {
    margin-bottom: 1rem;
    line-height: 1.6;
    color: white;
    font-weight: 500;
}

/* Ajustes para dispositivos móviles */
@media screen and (max-width: 768px) {
    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: 1.5rem;
    }
}