        .footer {
            background: var(--azul);
            color: white;
            padding: 2rem 0 1rem;
            border-top: 4px solid var(--verde);
            font-family: var(--font-principal);
            width: 100%;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .footer-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 1.5rem 2rem;
            margin-bottom: 1.5rem;
        }

        /* Logo imagen */
        .footer-logo img {
            height: 60px;
            width: 200px;
            display: block;
            max-width: 300px;
            object-fit: contain;
            padding: 5px 10px;
            border-radius: 8px;
        }

        /* Información en línea */
        .footer-info {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 1.5rem 2rem;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var( --verde-claro);
            font-size: 0.95rem;
        }

        .info-item i {
            color: var(--verde-claro);
            width: 18px;
            font-size: 1rem;
        }

        .info-item a {
            color: var(--verde-claro);
            text-decoration: none;
            transition: 0.2s;
        }

        .info-item a:hover {
            color: var(--verde);
            text-decoration: underline;
        }

        /* Redes sociales */
        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: var(--verde-claro);
            font-size: 1.4rem;
            transition: 0.2s;
        }

        .social-links a:hover {
            color: var(--verde);
            transform: translateY(-2px);
        }

  /* Botón de privacidad */
.privacidad-btn {
    background: transparent;
    color: var(--verde-claro);
    border: 2px solid var(--verde-claro);
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    display: block;
    align-items: center;
    gap: 8px;
    margin-top: 0.5rem;
    margin-left: auto;
    margin-right: auto;
}

.privacidad-btn:hover {
    background: var(--verde);
    color: var(--gris);
    border-color: var(--verde);
}

/* Botón Aceptar del modal */
.btn-aceptar {
    background: var(--verde);
    color: var(--gris);
    border: none;
    padding: 0.8rem 3rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    border: 2px solid var(--verde-claro);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-aceptar:hover {
    background: var(--verde-claro);
    color: var(--azul);
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Línea inferior */
.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(208, 218, 137, 0.2);
    color: var(--verde-claro);
    font-size: 0.85rem;
}

.footer-bottom .privacidad-btn {
    margin-left: auto;
    margin-right: auto;
}

/* ===== VENTANA EMERGENTE ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: white;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 3px solid var(--verde-claro);
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: var(--azul);
    color: white;
    padding: 1.2rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 3px solid var(--verde);
}

.modal-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
}

.modal-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: 0.2s;
}

.modal-close:hover {
    background: var(--verde);
    color: var(--gris);
}

.modal-body {
    padding: 2rem;
    overflow-y: auto;
    max-height: calc(80vh - 80px);
    background: var(--blanco);
}

.modal-body h4 {
    color: var(--azul);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
}

.modal-body h4:first-child {
    margin-top: 0;
}

.modal-body p {
    color: var(--gris);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.modal-body ul {
    margin-left: 1.5rem;
    color: var(--gris);
    line-height: 1.6;
}

.modal-body li {
    margin-bottom: 0.5rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-info {
        flex-direction: column;
        align-items: center;
    }

    .info-item {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo img {
        margin: 0 auto;
    }

    .footer-bottom .privacidad-btn {
        margin-left: auto;
        margin-right: auto;
    }
}