@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

/* Reset de margens e paddings */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    background-color: #f0f0f0;
}

/* Estilos do cabeçalho */
.cabeca {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(45deg, #1e90ff, #16c2fb);
}

.logo {
    width: 60px;
}

.menu {
    display: flex;
    list-style: none;
}

.menu li {
    margin-right: 20px;
}

.menu li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
}

.search {
    display: flex;
    align-items: center;
}

.search-input {
    padding: 8px 10px;
    border: none;
    border-radius: 20px;
    outline: none;
    width: 200px;
}

.search-button {
    padding: 8px 15px;
    border: none;
    background-color: white;
    border-radius: 20px;
    cursor: pointer;
    margin-left: 10px;
}

/* Estilos do botão de hambúrguer */
.sidebar-toggle {
    position: fixed;
    top: 20px;
    left: 20px;
    background-color: #1e90ff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    z-index: 1000; /* Garante que fique acima da sidebar */
    display: none;
    font-size: 1.2rem;
    transition: background-color 0.3s ease;
}

.sidebar-toggle:hover {
    background-color: #16c2fb;
}

/* Estilos da barra lateral */
.sidebar {
    width: 250px;
    background-color: #2c3e50;
    padding: 20px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    height: 100%;
    overflow-y: auto;
    left: -250px;
    transition: left 0.3s ease;
    z-index: 999;
    top: 0; /* Garante que ocupa toda a altura */
}

.sidebar.active {
    left: 0;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.2); /* Adicione uma sombra mais forte quando ativa */
}

.sidebar h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #ecf0f1; /* Cor do texto clara */
    text-align: center;
    border-bottom: 2px solid #1e90ff; /* Linha decorativa */
    padding-bottom: 10px;
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 998;
    display: none;
}

.sidebar.active + .sidebar-overlay {
    display: block;
}

#category-list {
    list-style: none;
    padding: 0;
}

#category-list li {
    margin-bottom: 15px;
}

#category-list li a {
    text-decoration: none;
    color: #ecf0f1; /* Cor do texto clara */
    font-size: 1.1rem;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    padding: 10px;
    border-radius: 5px;
}

#category-list li a:hover {
    color: #1e90ff; /* Cor de destaque ao passar o mouse */
    background-color: rgba(255, 255, 255, 0.1); /* Fundo sutil ao passar o mouse */
    padding-left: 15px; /* Efeito de deslocamento */
}

/* Ajustes no layout principal para acomodar a barra lateral */
.blog {
    margin-left: 0; /* Remove o margin-left inicial */
    padding: 20px;
    max-width: 800px;
}

.blog.sidebar-active {
    margin-left: 270px; /* Adiciona espaço para a barra lateral */
}

/* Mostra o botão de hambúrguer em telas menores */
@media (max-width: 768px) {
    .sidebar-toggle {
        display: block;
    }
} Estilos da seção de blog */

.blog h1 {
    text-align: center;
    margin-bottom: 20px;
}

.article {
    background: white;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.article h2 {
    color: #1e90ff !important; /* Azul */
    font-size: 2rem !important;
    margin: 1rem 0 !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    font-weight: 600 !important;
}

.article .meta {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.article .favorite {
    color: #ffcc00 !important; /* Dourado */
    font-size: 1.5rem !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
}

.article .favorite:hover {
    transform: scale(1.2) !important;
    text-shadow: 0 0 8px rgba(255, 204, 0, 0.5) !important;
}

.article p,
.post-details p,
.comment p,
.content p,
.content {
    font-weight: 400 !important;
    color: #333 !important;
}



/* Estilos para a paginação */
#pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

#pagination button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    margin: 0 5px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#pagination button:hover {
    background-color: #0056b3;
}

#pagination button.active {
    background-color: #0056b3;
}

/* Estilos para o player de áudio */
.audio-controls {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.audio-controls button {
    background-color: #1e90ff;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    margin-right: 10px;
}

.audio-controls button:hover {
    background-color: #16c2fb;
}

.progress-bar {
    flex-grow: 1;
    height: 10px;
    background-color: #e0e0e0;
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}

.progress {
    height: 100%;
    background-color: #1e90ff;
    width: 0;
    transition: width 0.1s linear;
}

/* Estilos Gerais para Comentários */
.comment {
    position: relative;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.4;
}

/* Cabeçalho do Comentário */
.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.comment-author {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    color: #050505;
}

.comment-date {
    margin-left: auto;
    font-size: 12px;
    color: #65676B;
}

/* Conteúdo do Comentário */
.comment-content {
    margin: 4px 0 8px 42px;
    font-size: 14px;
    color: #050505;
    word-break: break-word;
}

/* Ações do Comentário - TUDO EM LINHA */
.comment-actions {
    display: flex;
    align-items: center;
    margin-left: 42px;
    margin-top: 8px;
    gap: 16px;
}

/* Container de Reações (tudo em linha) */
.reaction-container {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Botão de Reação */
.reaction-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 4px 8px;
    border-radius: 18px;
    font-size: 14px;
    cursor: pointer;
    color: #65676B;
    transition: all 0.2s;
}

.reaction-btn:hover {
    background-color: #f0f2f5;
}

.reaction-btn .reaction-icon {
    margin-right: 4px;
}

/* Botão de Responder */
.reply-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: #65676B;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.reply-btn:hover {
    background-color: #f0f2f5;
}

.reply-btn i {
    margin-right: 6px;
    font-size: 12px;
}

/* Contador de Respostas */
.reply-count {
    margin-left: auto;
    font-size: 12px;
    color: #65676B;
}

/* Responsividade */
@media (max-width: 768px) {
    .comment-content,
    .comment-actions {
        margin-left: 0;
    }
    
    .comment-actions {
        gap: 8px;
    }
    
    .reaction-btn span,
    .reply-btn span {
        display: none;
    }
}

.share-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.share-buttons a {
    text-decoration: none;
    color: white;
    font-size: 20px;
    padding: 8px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.share-buttons a:hover {
    opacity: 0.8;
}

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

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

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

.share-instagram {
    background-color: #e4405f;
}

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

.see-also {
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 15px;
}

.see-also h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #333;
}

.see-more{
    text-decoration: none;
    color: #1e90ff;
    font-size: 16px;
    transition: color 0.3s ease;
    background-color: #0056b3;
    padding: 15px;
    display: inline-flex;
    border-radius: 25px;
    box-shadow: 2px 2px 2px rgb(178, 178, 252);
}


.see-more:hover {
    color: #82defd;
}
.related-posts {
    list-style: none;
    padding: 0;
}

.related-posts li {
    margin-bottom: 10px;
}

.related-posts li a {
    text-decoration: none;
    color: #1e90ff;
    font-size: 16px;
    transition: color 0.3s ease;
}

.related-posts li a:hover {
    color: #16c2fb;
}

/* Estilos da seção de detalhes do post */
.post-details {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.post-details h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #1e90ff;
}

.post-details p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 10px;
}

.post-details p strong {
    color: #333;
}

.post-details .content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* Adicione ao blog.css */
.related-item {
    font-family: 'Poppins', sans-serif;
    font-weight: 400; /* Normal */
}

.related-item::marker {
    display: none;
}
.related-title {
    font-weight: 400 !important; /* Remove negrito */
    display: block;
    margin-top: 8px;
    color: #2c3e50;
    transition: color 0.3s;
    list-style-type: none;
}

.related-link:hover .related-thumbnail {
    transform: scale(1.02);
}

.related-link:hover .related-title {
    color: #1e90ff;
}

/* Efeito de desfoque e fundo escuro */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal visível e centralizado */
.modern-modal {
    position: fixed; /* Alteração crucial */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001; /* Acima do overlay */
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

.modal-content {
    padding: 0;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-header i {
    font-size: 24px;
}

.modal-body {
    padding: 25px;
    color: #555;
    line-height: 1.6;
}

.modal-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

/* Botões modernos */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-close {
    background: #f1f1f1;
    color: #555;
    width: 60px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Efeito de desfoque e fundo escuro */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Modal visível e centralizado */
.modern-modal {
    position: fixed; /* Alteração crucial */
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 400px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
    z-index: 1001; /* Acima do overlay */
    opacity: 0;
    animation: fadeIn 0.3s forwards;
}

.modal-content {
    padding: 0;
    overflow: hidden;
}

.modal-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.modal-header i {
    font-size: 24px;
}

.modal-body {
    padding: 25px;
    color: #555;
    line-height: 1.6;
}

.modal-footer {
    display: flex;
    justify-content: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

/* Botões modernos */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-close {
    background: #f1f1f1;
    color: #555;
    width: 60px;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Adicione ao blog.css */
.liked {
    color: #ff4757 !important;
}

.like-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
}

.like-btn:hover {
    color: #ff4757;
}

.like-btn .fas {
    margin-right: 0.5rem;
}

.views {
    color: #666;
    font-size: 0.9rem;
}


#category-list li {
    margin-bottom: 0.8rem;
}

#category-list a {
    color: #ecf0f1;
    padding: 0.8rem;
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s;
}

#category-list a:hover {
    background: #34495e;
    padding-left: 1.2rem;
}

/* Notificações */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 15px 25px;
    border-radius: 8px;
    color: white;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: slideIn 0.3s ease-out;
}

.notification.info {
    background: #2196F3;
}

.notification.error {
    background: #f44336;
}

@keyframes slideIn {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

/* Modal de Login */
.custom-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    max-width: 400px;
    text-align: center;
}

.modal-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-login {
    background: #1e90ff;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
    text-decoration: none;
}

.btn-close {
    background: #f44336;
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.like-btn .fa-heart.liked {
    color: #ff4757;
}

.like-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.fa-heart.liked {
    color: #ff4757;
    transition: color 0.3s;
}

.like-count {
    margin-left: 5px;
    font-size: 0.9em;
}


.fas.fa-heart.liked {
    color: #ff4757;
    animation: pulse 0.3s;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

.view-count {
    display: inline-block;
    margin-left: 5px;
    font-weight: bold;
}

.view-count.update {
    color: #1e90ff;
    transform: scale(1.1);
}

/* Estilos Gerais para Comentários */
.comment {
    position: relative;
    padding: 12px 0;
    border-bottom: 1px solid #f0f0f0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.4;
}

.comment-header {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}

.comment-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    margin-right: 10px;
    object-fit: cover;
    background-color: #f5f5f5;
}

.comment-author {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    color: #050505;
}

.comment-date {
    margin-left: auto;
    font-size: 12px;
    color: #65676B;
}

.comment-content {
    margin: 4px 0 8px 42px;
    font-size: 14px;
    color: #050505;
    word-break: break-word;
}

.reply-badge {
    display: block;
    margin: 4px 0 4px 42px;
    font-size: 12px;
    color: #65676B;
}

.reply-badge .reply-to {
    color: #385898;
    font-weight: 600;
}

/* Ações do Comentário - TUDO EM LINHA */
.comment-engagement {
    display: flex;
    align-items: center;
    margin-left: 42px;
    margin-top: 8px;
    gap: 16px;
    flex-wrap: wrap;
}

/* Reações em linha */
.reaction-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.reaction-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    padding: 4px 8px;
    border-radius: 18px;
    font-size: 14px;
    cursor: pointer;
    color: #65676B;
    transition: all 0.2s;
}

.reaction-btn:hover {
    background-color: #f0f2f5;
}

.reaction-btn.active {
    color: #1877f2;
}

.reply-btn {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: #65676B;
    font-size: 13px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.2s;
}

.reply-btn:hover {
    background-color: #f0f2f5;
}

.toggle-replies {
    display: flex;
    align-items: center;
    background: none;
    border: none;
    color: #65676B;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    cursor: pointer;
}

.toggle-replies:hover {
    background-color: #f0f2f5;
}

.toggle-replies i {
    margin-left: 4px;
    font-size: 10px;
    transition: transform 0.2s;
}

.replies {
    margin-top: 8px;
    padding-left: 16px;
    border-left: 2px solid #f0f2f5;
}

/* Formulário de Resposta */
.reply-form {
    margin-top: 12px;
    background: #f0f2f5;
    border-radius: 8px;
    padding: 12px;
}

.reply-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    font-size: 12px;
    color: #65676B;
}

.close-reply-form {
    background: none;
    border: none;
    color: #65676B;
    cursor: pointer;
    padding: 0;
    font-size: 12px;
}

.reply-form textarea {
    width: 100%;
    min-height: 60px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    resize: vertical;
    font-family: inherit;
    font-size: 14px;
    margin-bottom: 8px;
}

.reply-form textarea:focus {
    outline: none;
    border-color: #1877f2;
}

.form-actions {
    display: flex;
    justify-content: flex-end;
}

/* Seletor de Reações */
.reaction-selector-popup {
    display: flex;
    background: white;
    border-radius: 24px;
    padding: 6px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    border: 1px solid #e4e6eb;
    position: absolute;
    bottom: 35px;
    left: 0;
    z-index: 100;
}

.reaction-selector-popup button {
    background: none;
    border: none;
    font-size: 22px;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    border-radius: 50%;
}

.reaction-selector-popup button:hover {
    transform: scale(1.3) translateY(-8px);
}

/* Responsividade */
@media (max-width: 768px) {
    .comment-content,
    .comment-engagement,
    .reply-badge {
        margin-left: 0;
    }
    
    .comment-engagement {
        gap: 8px;
    }
    
    .reaction-btn span,
    .reply-btn span {
        display: none;
    }
    
    .replies {
        padding-left: 8px;
    }
    
    .toggle-replies .reply-text {
        display: inline;
    }
}

/* Ícones de reações */
.reaction-btn.like { color: #1877f2; }
.reaction-btn.love { color: #f33e58; }
.reaction-btn.haha { color: #f7b125; }
.reaction-btn.wow { color: #f7b125; }
.reaction-btn.sad { color: #f7b125; }
.reaction-btn.angry { color: #e9710f; }

/* FORMULÁRIO DE COMENTÁRIO - DESIGN MODERNO */
.comment-form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
    position: relative;
    background: #f8f9fa;
    border-radius: 24px;
    padding: 8px;
    border: 1px solid #e4e6eb;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.comment-form:focus-within {
    border-color: #1e90ff;
    box-shadow: 0 0 0 2px rgba(30, 144, 255, 0.2);
    background: #fff;
}

.comment-form .user-avatar {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(45deg, #1e90ff, #16c2fb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    z-index: 2;
}

.comment-form textarea {
    width: 100%;
    min-height: 44px;
    padding: 12px 12px 12px 48px;
    border: none;
    border-radius: 24px;
    resize: none;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    background: transparent;
    transition: all 0.3s ease;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: #1e90ff transparent;
}

.comment-form textarea:focus {
    outline: none;
    box-shadow: none;
}

.comment-form textarea::placeholder {
    color: #8d949e;
    font-weight: 400;
}

/* Personalizando a scrollbar */
.comment-form textarea::-webkit-scrollbar {
    width: 6px;
}

.comment-form textarea::-webkit-scrollbar-thumb {
    background-color: #1e90ff;
    border-radius: 3px;
}

/* BOTÃO ENVIAR - DESIGN PREMIUM */
.comment-form button[type="submit"] {
    align-self: flex-end;
    background: linear-gradient(135deg, #1e90ff, #16c2fb);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 144, 255, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.comment-form button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(30, 144, 255, 0.4);
}

.comment-form button[type="submit"]:active {
    transform: translateY(0);
}

.comment-form button[type="submit"]:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #16c2fb, #1e90ff);
    opacity: 1;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.comment-form button[type="submit"]::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.comment-form button[type="submit"]:hover::before {
    left: 100%;
}

.comment-form button[type="submit"]:disabled {
    background: #e4e6eb;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ANIMAÇÃO DE ENVIO */
@keyframes sendAnimation {
    0% { transform: scale(1); }
    50% { transform: scale(0.9); }
    100% { transform: scale(1); }
}

.comment-form button[type="submit"].sending {
    animation: sendAnimation 0.4s ease;
}

/* Estilos melhorados para os botões sociais */
.share-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.share-buttons a, .share-buttons button {
    text-decoration: none;
    color: white;
    font-size: 20px;
    padding: 10px;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    cursor: pointer;
}

/* Efeito hover moderno */
.share-buttons a:hover, .share-buttons button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Cores específicas para cada plataforma */
.share-facebook {
    background-color: #1877f2;
    &:hover { background-color: #166fe5; }
}

.share-twitter {
    background-color: #1da1f2;
    &:hover { background-color: #1991db; }
}

.share-whatsapp {
    background-color: #25d366;
    &:hover { background-color: #1da64a; }
}

.share-instagram {
    background: radial-gradient(circle at 30% 107%, 
        #fdf497 0%, #fdf497 5%, 
        #fd5949 45%, #d6249f 60%, 
        #285AEB 90%);
    &:hover { opacity: 0.9; }
}

.copy-link {
    background-color: #6c757d;
    &:hover { background-color: #5a6268; }
}

/* Estilos para posts de vídeo */
.video-post {
    position: relative;
}

.video-badge {
    background-color: #ff4757;
    color: white;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.8em;
    margin-left: 10px;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    margin: 20px 0;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-duration {
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
    color: #666;
    font-size: 0.9em;
}

.video-duration i {
    margin-right: 5px;
}

.video-description {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    margin: 20px 0;
}

.video-description h3 {
    margin-top: 0;
    color: #1e90ff;
}

.video-player {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    margin: 20px 0;
}

.video-player iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.playlist-controls {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    background: rgba(0,0,0,0.7);
    padding: 10px;
    border-radius: 25px;
}

.playlist-controls button {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    transition: background 0.3s;
}

.playlist-controls button:hover {
    background: rgba(255,255,255,0.2);
}

.video-fields {
    transition: all 0.3s ease;
    overflow: hidden;
  }
  
  .loading-spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1050;
  }
  
  .alert {
    max-width: 400px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  
  .post-card {
    transition: transform 0.2s ease;
  }
  
  .post-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }
