/* ======= CONTENEDOR GENERAL ======= */
.footer-container {
    padding-top: 20px;
    font-family: 'Montserrat', sans-serif;
}

/* ======= GRID PRINCIPAL ======= */
.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    gap: 40px;
}

/* ======= COPYRIGHT Y FOOTER BOTTOM ======= */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    background: var(--dark-color);
    color: white;
    padding: 2rem 4rem;
    text-align: center;
    gap: 20px;
}

.footer-bottom p {
    margin: 0;
    color: white;
}

/* ======= UBICACIÓN ======= */
.footer-location {
    display: flex;
    align-items: center;
    gap: 10px;
    color: white;
    font-size: 14px;
    font-weight: 600;
}

.footer-location p {
    margin: 0;
    line-height: 1.3;
}

.icon-pin {
    width: 30px;
    height: 30px;
    display: inline-block;
}

/* ======= SOCIAL ICONS ======= */
.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in-out;
}

.social-icon img {
    width: 28px;
    height: 28px;
    transition: 0.3s ease-in-out;
    filter: brightness(0) invert(1);
}

.social-icon:hover img {
    transform: scale(1.15);
    filter: brightness(0) invert(1)
            drop-shadow(0 0 4px rgba(200, 40, 140, 1))
            drop-shadow(0 0 10px rgba(200, 40, 140, 0.7))
            drop-shadow(0 0 18px rgba(200, 40, 140, 0.5));
}

/* ======= RESPONSIVE ======= */
@media (max-width: 900px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-location {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        padding: 2rem 1.5rem;
        gap: 15px;
    }

    .footer-social {
        justify-content: center;
    }
}