/* ========== FOOTER BASE ========== */
.footer {
    background: #f4f4f4;
    padding: 50px 50px 50px;
    font-family: "Mulish", sans-serif;
    position: relative;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 60px;
}

/* -------- Izquierda -------- */
.footer-left {
    width: 40%;
}

.logo-footer {
    width: 190px;
    margin-bottom: 20px;
}

.direccion,
.contacto .fila {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 18px;
}

.icon {
    width: 22px;
}

.direccion p,
.contacto span {
    font-size: 15px;
    line-height: 1.3em;
}

/* -------- Derecha -------- */
.footer-right {
    flex: 1;
    min-width: 280px;
}

.titulo-footer {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 25px;
}

.menus-redes {
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

.col h4 {
    font-size: 15px;
    font-weight: 900;
    margin-bottom: 10px;
}

.col p {
    font-size: 14px;
    margin: 5px 0;
}

/* -------- WhatsApp flotante -------- */
.whatsapp {
    position: absolute;
    right: 35px;
    bottom: 80px;
    width: 68px;
    cursor: pointer;
}

.texto-whats {
    position: absolute;
    right: 120px;
    bottom: 100px;
    background: white;
    padding: 8px 15px;
    border-radius: 5px;
}

.chat-message {
    font-size: 11px;
    font-weight: 600;
}

/* -------- Línea inferior -------- */
.linea-fondo {
    text-align: center;
    width: 100%;
    padding-top: 20px;
    margin-top: 60px;
    border-top: 1px solid #9d9d9d;
    font-size: 11px;
    color: #6d6d6d;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1000px) {
    .menus-redes {
        gap: 40px;
    }
}

@media (max-width: 700px) {
    .footer-container {
        flex-direction: column;
    }

    .titulo-footer {
        font-size: 24px;
    }

    .footer {
        padding: 40px 20px 150px;
    }

    .whatsapp {
        right: 20px;
        bottom: 25px;
    }

    .texto-whats {
        right: 95px;
        bottom: 35px;
    }

    .linea-fondo {
        margin-top: 40px;
        font-size: 10px;
    }
}
