
/* =========================================
   FOOTER (Mobile First)
   ========================================= */
.footer {
    background-color: var(--color-dark); /* El mismo oscuro del nav */
    color: var(--color-light);
    padding: 30px 0;
    font-size: 14px;
    text-align: center;
}

.footer__container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer__info {
    display: flex;
    flex-direction: column; /* Apilado en móvil */
    gap: 10px;
    align-items: center;
}

/* Ocultar divisores "|" en móvil */
.footer__divider {
    display: none;
}

.footer__link {
    color: var(--color-light);
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: var(--color-secondary);
}

.footer__link--bold {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__copy {
    margin-top: 10px;
    border-top: 1px solid #444;
    padding-top: 15px;
    font-weight: 100;
    font-family: 'Courier New', Courier, monospace;
}

/* =========================================
   MEDIA QUERY (Escritorio)
   ========================================= */
@media (min-width: 992px) {
    .footer {
        padding: 20px 0;
    }

    .footer__info {
        flex-direction: row; /* En línea como en tu imagen */
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px;
    }

    .footer__divider {
        display: inline; /* Mostrar "|" solo en PC */
        color: var(--color-secondary);
        font-weight: bold;
    }

    .footer__copy {
        border-top: none;
        margin-top: 5px;
        padding-top: 0;
        font-family: 'Montserrat', 'Arial', 'sans-serif';
    }
}




/* =========================================
   BOTÓN WHATSAPP FLOTANTE
   ========================================= */
.whatsapp-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: #FFFFFF;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 20px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: all 0.3s ease;
    font-family: var(--font-main);
    animation: pulse-wa 2s infinite;
}

@keyframes pulse-wa {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn i {
    font-size: 26px;
}

.whatsapp-btn__text {
    display: inline-block;
    margin-left: 10px;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.02em;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #128C7E, #075E54);
    transform: translateY(-3px) scale(1.03);
    color: #FFFFFF;
}

@media (max-width: 600px) {
    .whatsapp-btn {
        padding: 10px 14px;
        bottom: 15px;
        right: 15px;
    }
    .whatsapp-btn__text {
        font-size: 12px;
    }
}