:root {
    --icon-size: 40px;
}

.redes-sociales-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 15px 0;
}

.redes-sociales-container.align-left {
    justify-content: flex-start;
}

.redes-sociales-container.align-center {
    justify-content: center;
}

.redes-sociales-container.align-right {
    justify-content: flex-end;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
    color: white;
    font-size: calc(var(--icon-size) * 0.45);
    width: var(--icon-size);
    height: var(--icon-size);
    flex-shrink: 0;
}

/* Estilos de forma */
.redes-sociales-container.rounded .social-icon {
    border-radius: 8px;
}

.redes-sociales-container.square .social-icon {
    border-radius: 0;
}

.redes-sociales-container.circle .social-icon {
    border-radius: 50%;
}

/* Colores de redes sociales */
.social-icon.facebook {
    background-color: #3b5998;
}

.social-icon.youtube {
    background-color: #ff0000;
}

.social-icon.twitter {
    background-color: #1da1f2;
}

.social-icon.telegram {
    background-color: #0088cc;
}

.social-icon.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-icon.linkedin {
    background-color: #0077b5;
}

.social-icon.tiktok {
    background-color: #000000;
}

.social-icon.whatsapp {
    background-color: #25d366;
}

/* Efectos hover */
.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 768px) {
    .redes-sociales-container {
        justify-content: center;
        gap: 8px;
    }
    
    .social-icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
}

/* Para widgets pequeños */
.widget .redes-sociales-container {
    gap: 6px;
}

.widget .social-icon {
    width: 32px;
    height: 32px;
    font-size: 14px;
}