/* Social Share Widget CSS */

.lennon-social-share-widget {
    margin-top: 40px;
    padding: 30px 0;
    border-top: 2px solid #e5e7eb;
    border-bottom: 2px solid #e5e7eb;
}

.social-share-container {
    max-width: 100%;
    margin: 0 auto;
}

.social-share-headline {
    font-size: 16px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

.social-share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
    border: none;
    cursor: pointer;
    background-color: #6b7280;
}

/* WhatsApp */
.social-share-btn.whatsapp {
    background-color: #25d366;
}

.social-share-btn.whatsapp:hover {
    background-color: #1fad50;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

/* Facebook */
.social-share-btn.facebook {
    background-color: #1877f2;
}

.social-share-btn.facebook:hover {
    background-color: #0a66c2;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(24, 119, 242, 0.3);
}

/* LinkedIn */
.social-share-btn.linkedin {
    background-color: #0a66c2;
}

.social-share-btn.linkedin:hover {
    background-color: #084595;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(10, 102, 194, 0.3);
}

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

.social-share-btn.instagram:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 144, 51, 0.3);
}

.social-share-btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Responsivo */
@media (max-width: 768px) {
    .social-share-btn {
        width: 40px;
        height: 40px;
    }
    
    .social-share-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .social-share-headline {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .social-share-widget {
        margin-top: 30px;
        padding: 20px 0;
    }
    
    .social-share-btn {
        width: 38px;
        height: 38px;
    }
    
    .social-share-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .social-share-buttons {
        gap: 10px;
    }
    
    .social-share-headline {
        font-size: 13px;
        margin-bottom: 15px;
    }
}

/* Acessibilidade */
.social-share-btn:focus {
    outline: 2px solid #3b82f6;
    outline-offset: 2px;
}

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