body { font-family: 'Inter', sans-serif; }
.gradient-bg { background: linear-gradient(135deg, #1e3a8a 0%, #0f766e 100%); }
.card-hover { transition: all 0.3s ease; }
.card-hover:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.1); }
.fade-in { opacity: 0; transform: translateY(30px); animation: fadeInUp 0.8s ease forwards; }
.fade-in-delay { animation-delay: 0.3s; }
.fade-in-delay-2 { animation-delay: 0.6s; }
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
.floating { animation: floating 3s ease-in-out infinite; }
@keyframes floating {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
.pt-26 {
  padding-top: 10rem;
}

/* Estilos customizados para o blog */

:root {
    --primary-red: #dc2626;
    --primary-teal: #0d9488;
    --primary-blue: #1e3a8a;
}

.article-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.article-category {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.category-tcc { background-color: #fef2f2; color: var(--primary-red); }
.category-saude { background-color: #f0f9ff; color: var(--primary-blue); }
.category-lgbt { background-color: #f0fdf4; color: #16a34a; }
.category-neuro { background-color: #faf5ff; color: #9333ea; }
.category-exterior { background-color: #fffbeb; color: #d97706; }

.read-time {
    color: #6b7280;
    font-size: 0.875rem;
}

.author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.featured-article {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 16px;
    overflow: hidden;
}

.pagination-btn {
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.pagination-btn:hover {
    background-color: #f3f4f6;
}

.pagination-btn.active {
    background-color: var(--primary-red);
    color: white;
}

.search-input {
    border-radius: 50px;
    padding: 12px 20px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.newsletter-card {
    background: linear-gradient(135deg, var(--primary-red) 0%, #ef4444 100%);
    color: white;
    border-radius: 16px;
    padding: 40px;
}

.newsletter-input {
    border-radius: 50px;
    padding: 14px 24px;
    border: none;
    width: 100%;
}

.newsletter-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.blog-header {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url('http://localhost/psicologaclarapio/dist/imgs/blog-header-bg.jpg');
    background-size: cover;
    background-position: center;
    padding: 120px 0 80px;
    color: white;
}

/* Estilo interna blog */

.article-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
    margin: 2rem 0;
}

.share-buttons {
    display: flex;
    gap: 0.75rem;
}

.share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.share-btn:hover {
    transform: translateY(-2px);
}

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

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

.share-twitter {
    background-color: #000000; /* Preto do X */
    color: white;
}

.share-linkedin {
    background-color: #0077B5;
    color: white;
}

.author-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    margin: 3rem 0;
}

.article-hero {
    position: relative;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 3rem;
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-hero-overlay {
    position: absolute;
    inset: 0;
    /*background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));*/
    display: flex;
    align-items: flex-end;
    padding: 3rem;
    color: white;
}

.summernote-content {
    display: block !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.5 !important;
}

.summernote-content * {
    margin: initial !important;
    padding: initial !important;
    border: initial !important;
    background: initial !important;
    color: #000 !important;
    text-align: left !important;
    font-family: inherit !important;
    font-size: inherit !important;
    line-height: inherit !important;
}

.summernote-content p {
    margin: 10px 0 !important;
}

.summernote-content img {
    max-width: 100% !important;
    height: auto !important;
    display: block !important;
}

/* Reset específico para elementos do Summernote */
.summernote-content h1 { font-size: 2em !important; margin: 0.67em 0 !important; }
.summernote-content h2 { font-size: 1.5em !important; margin: 0.75em 0 !important; }
.summernote-content h3 { font-size: 1.17em !important; margin: 0.83em 0 !important; }
.summernote-content ul { list-style-type: disc !important; margin-left: 20px !important; }
.summernote-content ol { list-style-type: decimal !important; margin-left: 20px !important; }

@media (max-width: 768px) {
    .article-hero {
        height: 300px;
    }

    .article-hero-overlay {
        padding: 2rem;
    }

    .article-meta {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .share-buttons {
        width: 100%;
        justify-content: center;
    }
}