/* Estilos para botões de interação ativos */
.post-votos .votesUp.active,
.post-votos .votesDown.active {
    background-color: #e74c3c !important;
    color: white !important;
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.post-votos .votesUp.active {
    background-color: #27ae60 !important;
}

.post-votos .votesUp.active .icon,
.post-votos .votesDown.active .icon {
    color: white !important;
}

/* Animações para botões */
.post-votos .votesUp,
.post-votos .votesDown,
.btnComment,
.btnShare {
    transition: all 0.3s ease;
    cursor: pointer;
}

.post-votos .votesUp:hover,
.post-votos .votesDown:hover,
.btnComment:hover,
.btnShare:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Estilos para seções de compartilhamento e comentários */
#shared,
#comentarios {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    border: 1px solid #e9ecef;
}

/* Botões de compartilhamento social */
.vp-social-share {
    padding: 0;
}

.vp-social-share h4 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 16px;
    font-weight: 600;
}

.share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    color: white;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: white;
}

.share-facebook {
    background-color: #1877f2;
}

.share-facebook:hover {
    background-color: #166fe5;
}

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

.share-twitter:hover {
    background-color: #0d8bd9;
}

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

.share-instagram:hover {
    opacity: 0.9;
}

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

.share-whatsapp:hover {
    background-color: #20ba5a;
}

.share-copy {
    background-color: #6c757d;
}

.share-copy:hover {
    background-color: #5a6268;
}

/* Formulário de comentários melhorado */
.comment-form-fields {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.comment-form-author,
.comment-form-email {
    flex: 1;
}

.comment-form-author input,
.comment-form-email input,
.comment-form-comment textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
    box-sizing: border-box;
}

.comment-form-author input:focus,
.comment-form-email input:focus,
.comment-form-comment textarea:focus {
    outline: none;
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.comment-form-comment textarea {
    min-height: 100px;
    resize: vertical;
}

.comment-form-submit {
    margin-top: 15px;
}

.comment-form-submit .btnComment {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-form-submit .btnComment:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.3);
}

/* Mensagens de feedback */
.vp-message {
    padding: 12px 15px;
    border-radius: 6px;
    margin: 15px 0;
    font-size: 14px;
}

.vp-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.vp-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Responsividade */
@media (max-width: 768px) {
    .comment-form-fields {
        flex-direction: column;
        gap: 10px;
    }
    
    .share-buttons {
        justify-content: center;
    }
    
    .share-btn {
        flex: 1;
        justify-content: center;
        min-width: 45px;
    }
    
    .share-btn span {
        display: none;
    }
}
