/**
 * social_share.css - Estilos para el componente de compartir en redes sociales
 */

/* =============================================================================
   SOCIAL SHARE OPTIMIZED STYLES
   ============================================================================= */

.social-share-optimized {
    margin: 20px 0;
    padding: 15px 0;
}

.social-share-container {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.social-share-title {
    font-weight: 600;
    color: #333;
    font-size: 14px;
}

.dark-mode .social-share-title {
    color: #e4e4e4;
}

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    cursor: pointer;
}

.social-share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.social-share-btn:active {
    transform: translateY(0);
}

/* Colores de cada red social */
.social-share-facebook {
    background: linear-gradient(135deg, #1877f2 0%, #0d65d9 100%);
}

.social-share-twitter {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
}

.social-share-linkedin {
    background: linear-gradient(135deg, #0077b5 0%, #005885 100%);
}

.social-share-whatsapp {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.social-share-email {
    background: linear-gradient(135deg, #ea4335 0%, #c5221f 100%);
}

.social-share-copy {
    background: linear-gradient(135deg, #6c757d 0%, #545b62 100%);
}

/* Dark mode adjustments */
.dark-mode .social-share-btn {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 480px) {
    .social-share-container {
        justify-content: center;
    }

    .social-share-title {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }
}
