/* SECCIÓN */
.social-section {
    text-align: center;
    margin-top: 40px;
}

/* TÍTULO */
.social-section h3 {
    margin-bottom: 15px;
    color: #333;
}

/* CONTENEDOR BOTONES */
.social-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

/* BOTONES GENERALES */
.social-btn {
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    transition: 0.3s;
}

/* COLORES */
.facebook {
    background: #1877f2;
}

.instagram {
    background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af);
}

.tiktok {
    background: #000;
}

.x {
    background: #1f2937;
}

/* HOVER */
.social-btn:hover {
    transform: scale(1.1);
    opacity: 0.9;
}