/* FOOTER.CSS - Pie de Página y Elementos Flotantes */

.main-footer {
    background-color: var(--primary-green);
    color: var(--white);
}

.footer-content {
    padding: 60px 20px;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.contact-data {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 2;
    margin-bottom: 30px;
    display: block;
}

.footer-mission {
    font-size: 0.85rem;
    opacity: 0.7;
}

/* Barra inferior */
.footer-bar {
    background-color: rgba(0, 0, 0, 0.2);
    padding: 30px 0;
    text-align: center;
}

.coverage {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 15px;
    opacity: 0.6;
}

.copyright {
    font-size: 0.75rem;
    opacity: 0.5;
}

/* Botón WhatsApp Flotante */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    z-index: 900;
    transition: var(--transition-smooth);
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.wa-icon {
    width: 32px;
    height: 32px;
}

/* Media Query Desktop */
@media (min-width: 1024px) {
    .footer-content {
        padding: 80px 40px;
    }

    .footer-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }

    .coverage {
        max-width: 70%;
        margin-bottom: 0;
    }
}