/* artigos/style.css */
/* Estilos complementares específicos para os Artigos Corte Kids */

.blog-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.blog-hero h1 {
    font-size: 3rem;
    color: var(--primary-blue);
    text-shadow: 3px 3px 0px var(--accent-yellow);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.blog-hero p {
    font-size: 1.2rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto 30px;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.category-btn {
    background: var(--white);
    color: var(--primary-blue);
    border: 2px solid var(--primary-blue);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.category-btn:hover, .category-btn.active {
    background: var(--primary-blue);
    color: var(--white);
    transform: scale(1.05);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.blog-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.04);
    border: 2px solid #eef2f6;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-blue);
    box-shadow: 0 15px 30px rgba(65, 105, 225, 0.1);
}

.blog-card-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 4px solid var(--accent-yellow);
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.08);
}

.blog-card-tag {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-blue);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
    text-transform: uppercase;
}

.blog-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.blog-card-meta {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 12px;
    display: flex;
    gap: 15px;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-card-content h2 {
    font-size: 1.35rem;
    margin-bottom: 15px;
    line-height: 1.4;
    color: var(--primary-blue);
    font-family: var(--font-heading);
}

.blog-card-content p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-card-link {
    font-weight: 700;
    color: var(--support-green);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.blog-card-link:hover {
    color: #28a745;
    gap: 12px;
}

/* Estilos da Página do Artigo Interno */
.post-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3f2fd 100%);
    padding: 60px 0 40px;
    border-bottom: 1px solid #eef2f6;
}

.post-breadcrumbs {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

.post-breadcrumbs a {
    color: var(--primary-blue);
    font-weight: 600;
}

.post-breadcrumbs span {
    margin: 0 8px;
}

.post-title {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0px rgba(255,255,255,1);
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    color: #555;
    font-size: 0.95rem;
    padding-bottom: 20px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-meta .tag {
    background: var(--primary-blue);
    color: white;
    padding: 3px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: bold;
}

.post-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    padding: 60px 0;
}

@media (max-width: 992px) {
    .post-container {
        grid-template-columns: 1fr;
    }
}

.post-featured-img {
    width: 100%;
    border-radius: 20px;
    border: 5px solid var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}

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

.post-body p {
    margin-bottom: 25px;
}

.post-body h3 {
    font-size: 1.6rem;
    margin: 40px 0 20px;
    color: var(--primary-blue);
}

.post-body ul, .post-body ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.post-body li {
    margin-bottom: 10px;
}

.post-share {
    margin-top: 40px;
    padding-top: 25px;
    border-top: 1px solid rgba(0,0,0,0.06);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    transition: transform 0.2s;
}

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

.share-wa {
    background: #25D366;
}

.share-fb {
    background: #1877F2;
}

/* Sidebar do Post */
.post-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-widget {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    border: 1px solid #f0f0f0;
    margin-bottom: 30px;
}

.sidebar-widget h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    border-bottom: 3px solid var(--accent-yellow);
    padding-bottom: 8px;
    display: inline-block;
}

.widget-post-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.widget-post-item:last-child {
    margin-bottom: 0;
}

.widget-post-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.widget-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.widget-post-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.widget-post-info h4 {
    font-size: 0.95rem;
    line-height: 1.3;
    margin-bottom: 5px;
    font-family: var(--font-body);
    font-weight: 600;
    color: #333;
}

.widget-post-info h4 a:hover {
    color: var(--primary-blue);
}

.widget-post-info span {
    font-size: 0.8rem;
    color: #888;
}

/* Banner de CTA no Post */
.post-cta-banner {
    background: linear-gradient(135deg, var(--primary-blue), #0b2f5c);
    color: white;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(65, 105, 225, 0.2);
}

.post-cta-banner h2 {
    color: var(--accent-yellow);
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.post-cta-banner p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 30px;
    opacity: 0.9;
}
