/* =========================================================
   FOOTER – LIVING GROUP ASOCIADOS
   ========================================================= */

/* ================= FOOTER ================= */
/* --- WHATSAPP FLOAT --- */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    transition: 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float img {
    width: 32px;
}
.footer {
    background: #ffffff;
    padding: 40px 0 15px;
    color: #041219;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* 🔥 clave */
    gap: 40px;
}

/* -------- IZQUIERDA -------- */
.footer-left {
    flex: 0 0 190px;
    /* ancho fijo y compacto */
}

.footer-left {
    flex: 1;
}

.footer-left h4 {
    margin: 0 0 16px;
    font-size: 1rem;
    color: #15a1b3;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a,
.footer-blog {
    font-size: 15px;
    color: #041219;
    text-decoration: none;
}

.social-links a:hover,
.footer-blog:hover {
    color: #15a1b3;
}

/* -------- CENTRO -------- */
.footer-center {
    flex: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-center h4 {
    margin: 0 0 16px;
    font-size: 1rem;
    color: #15a1b3;
}

.footer-logo {
    max-width: 140px;
    margin-bottom: 15px;
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact li {
    font-size: 14px;
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.4;
}

.footer-contact a {
    color: inherit;
    text-decoration: none;
    word-break: break-word;
    /* 🔥 evita desbordes */
}

@media (max-width: 992px) {
    .footer-center {
        align-items: center;
        text-align: center;
    }

    .footer-contact li {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        line-height: 1.5;
    }
}

@media (max-width: 600px) {
    .footer-center {
        width: 100%;
        align-items: center;
        text-align: center;
        margin-bottom: 20px;
    }

    .footer-logo {
        max-width: 120px;
    }

    .footer-contact li {
        font-size: 13px;
        /* justify-content: center;
        text-align: center;*/
    }

    .footer-center h4 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
}


/* -------- DERECHA -------- */
.footer-right {
    flex: 1;
}

.footer-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.footer-right iframe {
    width: 300px;
    height: 210px;
    border-radius: 8px;
    border: none;
}


/* -------- PIE -------- */
.footer-bottom {
    margin-top: 25px;
    text-align: center;
    font-size: 0.85rem;
}

/* -------- RESPONSIVE -------- */
@media (max-width: 900px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-center {
        align-items: center;
    }

    .footer-right iframe {
        width: 100%;
        max-width: 360px;
    }
}

#formMessage {
    margin-top: 15px;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease;
}

