/* ============================================
   VERIMA MARCAS - BLOG
   Design minimalista e elegante
   ============================================ */

@import url('style.css');

/* ============================================
   HERO BLOG
   ============================================ */
.hero {
    padding: 120px 0 80px;
    background-color: #0e0e0e;
    text-align: center;
}

.hero-content h1 {
    font-family: 'Inter', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-content h2 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #999999;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ============================================
   CATEGORIAS DE FILTRO
   ============================================ */
.blog-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 24px;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-btn:hover {
    border-color: #ffffff;
    transform: translateY(-2px);
}

.category-btn.active {
    background-color: #ffffff;
    color: #0e0e0e;
    border-color: #ffffff;
}

/* ============================================
   GRID DE ARTIGOS
   ============================================ */
.section {
    padding: 80px 0;
    background-color: #0e0e0e;
}

.section-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #999999;
    text-align: center;
    margin-bottom: 60px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* ============================================
   CARDS DE ARTIGOS - DESIGN MINIMALISTA
   ============================================ */
.blog-card {
    background-color: transparent;
    padding: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-image {
    width: 100%;
    height: 200px;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.blog-image i {
    font-size: 64px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.blog-card:hover .blog-image i {
    transform: scale(1.15) translateY(-3px);
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.2));
}

.blog-content {
    text-align: center;
}

.blog-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
}

.blog-meta span {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-meta i {
    font-size: 12px;
}

.blog-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.blog-content p {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
    color: #999999;
    line-height: 1.6;
    margin-bottom: 20px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    border-bottom: 1px solid #ffffff;
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.blog-link:hover {
    opacity: 0.7;
    transform: translateX(4px);
}

.blog-link i {
    font-size: 12px;
    transition: all 0.3s ease;
}

.blog-link:hover i {
    transform: translateX(4px);
}

/* ============================================
   CTA FINAL
   ============================================ */
.cta-final {
    padding: 80px 0;
    background-color: transparent;
    text-align: center;
    transition: all 1.5s ease;
}

.cta-final:hover {
    animation: pulse 1.5s ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.02);
        opacity: 0.95;
    }
}

.cta-final h2 {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.cta-final p {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #999999;
    margin-bottom: 32px;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #ffffff;
    color: #0e0e0e;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ============================================
   RESPONSIVIDADE
   ============================================ */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content h2 {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .blog-categories {
        gap: 8px;
    }
    
    .category-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .cta-final h2 {
        font-size: 28px;
    }
    
    .cta-final p {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }
    
    .blog-image {
        height: 160px;
    }
    
    .blog-image i {
        font-size: 48px;
    }
}


/* ============================================
   PÁGINAS DE ARTIGOS INDIVIDUAIS
   ============================================ */

/* Container do Artigo */
.article-container {
    padding: 60px 0 80px;
    background-color: #0e0e0e;
}

.article-container .container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Breadcrumb */
.breadcrumb {
    margin-bottom: 40px;
}

.breadcrumb a {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #999999;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.breadcrumb a:hover {
    color: #ffffff;
}

.breadcrumb i {
    font-size: 12px;
}

/* Cabeçalho do Artigo */
.article-header {
    margin-bottom: 48px;
    text-align: center;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.article-category {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.article-date,
.article-time {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666666;
    display: flex;
    align-items: center;
    gap: 6px;
}

.article-date i,
.article-time i {
    font-size: 12px;
}

.article-title {
    font-family: 'Inter', sans-serif;
    font-size: 36px;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.3;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.article-excerpt {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #999999;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Conteúdo do Artigo */
.article-content {
    font-family: 'Inter', sans-serif;
    color: #ffffff;
}

.article-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 24px;
}

.article-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 48px;
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.article-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
    margin-top: 36px;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.article-content ul,
.article-content ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.article-content li {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.8;
    color: #cccccc;
    margin-bottom: 12px;
}

.article-content strong {
    font-weight: 600;
    color: #ffffff;
}

/* CTA dentro do Artigo */
.article-cta {
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    margin: 48px 0;
    text-align: center;
}

.article-cta h3 {
    font-family: 'Inter', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 12px;
    margin-top: 0;
}

.article-cta p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #999999;
    margin-bottom: 24px;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    background-color: transparent;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background-color: #ffffff;
    color: #0e0e0e;
    transform: translateY(-2px);
}

.btn-whatsapp i {
    font-size: 18px;
}

/* Compartilhar */
.article-share {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.article-share h3 {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: transparent;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.share-btn:hover {
    border-color: #ffffff;
    transform: translateY(-2px);
}

.share-btn i {
    font-size: 16px;
}

/* Top Bar */
.top-bar {
    background-color: #1a1a1a;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.confidence-text {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.confidence-item {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #cccccc;
    display: flex;
    align-items: center;
    gap: 6px;
}

.confidence-item i {
    font-size: 12px;
    color: #ffffff;
}

.confidence-separator {
    color: #666666;
}

.btn-consulta-gratuita {
    padding: 8px 20px;
    background-color: #ffffff;
    color: #0e0e0e;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-consulta-gratuita:hover {
    background-color: #cccccc;
    transform: translateY(-1px);
}

/* Responsividade para Artigos */
@media (max-width: 768px) {
    .article-title {
        font-size: 28px;
    }
    
    .article-excerpt {
        font-size: 16px;
    }
    
    .article-content h2 {
        font-size: 24px;
        margin-top: 36px;
    }
    
    .article-content h3 {
        font-size: 20px;
        margin-top: 28px;
    }
    
    .article-content p,
    .article-content li {
        font-size: 15px;
    }
    
    .article-cta {
        padding: 30px 20px;
    }
    
    .article-cta h3 {
        font-size: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-primary,
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    .top-bar-content {
        flex-direction: column;
        text-align: center;
    }
    
    .confidence-text {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .article-title {
        font-size: 24px;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 8px;
    }
    
    .share-buttons {
        flex-direction: column;
    }
    
    .share-btn {
        width: 100%;
        justify-content: center;
    }
}
