/* Botón de seguimiento (Facebook) */
.follow-container{
    width: 100%;
    display: flex;
    justify-content: center;
    padding: 18px 0;
}

/* Contenedor superior que agrupa el texto y el botón antes del footer */
/* (footer-top removed) */

.footer-text{
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    padding: 10px 0 6px 0;
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

.follow-btn{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1877F2; /* color Facebook */
    color: #fff;
    padding: 10px 16px;
    border-radius: 999px;
    text-decoration: none;
    font-family: 'Arial', sans-serif;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
    transition: transform .14s ease, box-shadow .14s ease, opacity .14s ease;
}

.follow-btn svg{
    width: 18px;
    height: 18px;
    color: #fff;
}

.follow-btn:hover,
.follow-btn:focus{
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.18);
    opacity: 0.98;
}