/* Blog Page Styles - Om Liptus */



.blog-section {
    margin-bottom: 50px;
    padding: 50px auto;
}
/* Blog Hero Section */
.blog-hero {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 80px 0;
    margin-bottom: 50px;
}

.blog-hero h1 {
    color: #2e7d32;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: calc(1.7vw + 1.2vh + 1.2vmin);
    font-family: "Neucha", cursive;
}

.blog-hero .lead {
    font-size: 1.3rem;
    color: #555;
    font-family: "Nunito", sans-serif;
}

.blog-hero img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}


.titulo-blog h2 {
    margin: 30px 0;
    font-size: calc(1.7vw + 1.2vh + 1.2vmin);
    font-family: "Neucha", cursive;
    font-optical-sizing: auto;
    font-weight: 100;
    font-style: normal;
    text-align: center;
    text-transform: uppercase;
    color: #C2CAA4;
}

.subtitulo-blog {
    margin: 30px 0;
    font-size: calc(1.3vw + 1vh + 1vmin);
    font-family: "Neucha", cursive;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    text-align: center;
    color: #7a825d;
}

/* Blog Articles Grid */
.blog-articles {
    background: #f8f9fa;
}

/* Blog Card */
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.blog-card-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #2e7d32;
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    font-family: "Nunito", sans-serif;
}

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

.blog-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #999;
    font-size: 0.9rem;
}

.blog-meta i {
    margin-right: 5px;
}

.blog-card h3 {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #2e7d32;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
    font-family: "Nunito", sans-serif;
}

.btn-read-more:hover {
    gap: 12px;
    color: #1b5e20;
}

/* Article Page Styles */
.article-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    margin-bottom: 50px;
}

.article-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.article-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 0 20px;
}

.article-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.article-category-badge {
    display: inline-block;
    background: #2e7d32;
    color: #fff;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.article-meta {
    display: flex;
    justify-content: center;
    gap: 30px;
    font-size: 1rem;
    margin-top: 20px;
}

.article-meta i {
    margin-right: 8px;
}

/* Article Content */
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 50px;
}

.article-content h2 {
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    color: #2e7d32;
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.article-content h3 {
    font-family: "Nunito", sans-serif;
    font-weight: 600;
    color: #333;
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.article-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
}

.article-content ul,
.article-content ol {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 20px;
    padding-left: 30px;
}

.article-content li {
    margin-bottom: 10px;
}

.article-content blockquote {
    border-left: 4px solid #2e7d32;
    padding-left: 20px;
    margin: 30px 0;
    font-style: italic;
    color: #666;
    font-size: 1.2rem;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

/* Back to Blog Button */
.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #2e7d32;
    color: #fff;
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    margin-bottom: 30px;
}

.back-to-blog:hover {
    background: #1b5e20;
    color: #fff;
}

/* Related Articles */
.related-articles {
    background: #f8f9fa;
    padding: 50px 0;
    margin-top: 50px;
}

.related-articles h2 {
    text-align: center;
    font-family: "Nunito", sans-serif;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 40px;
}

/* Share Buttons */
.share-buttons {
    display: flex;
    gap: 15px;
    margin: 40px 0;
    padding: 20px 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.share-buttons span {
    font-weight: 600;
    color: #333;
    margin-right: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.share-btn:hover {
    transform: scale(1.1);
}

.share-btn.facebook {
    background: #3b5998;
}

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

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

.share-btn.linkedin {
    background: #0077b5;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-hero {
        padding: 50px 0;
    }
    
    .blog-hero h1 {
        font-size: 2.5rem;
    }
    
    .blog-hero .lead {
        font-size: 1.1rem;
    }
    
    .blog-card-image {
        height: 200px;
    }
    
    .article-hero {
        height: 400px;
    }
    
    .article-hero h1 {
        font-size: 2rem;
    }
    
    .article-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .article-content h2 {
        font-size: 1.5rem;
    }
    
    .article-content p,
    .article-content ul,
    .article-content ol {
        font-size: 1rem;
    }
    
    .share-buttons {
        flex-wrap: wrap;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-card {
    animation: fadeInUp 0.6s ease-out;
}

.blog-card:nth-child(1) { animation-delay: 0.1s; }
.blog-card:nth-child(2) { animation-delay: 0.2s; }
.blog-card:nth-child(3) { animation-delay: 0.3s; }
.blog-card:nth-child(4) { animation-delay: 0.4s; }
.blog-card:nth-child(5) { animation-delay: 0.5s; }
.blog-card:nth-child(6) { animation-delay: 0.6s; }
.blog-card:nth-child(7) { animation-delay: 0.7s; }
.blog-card:nth-child(8) { animation-delay: 0.8s; }
.blog-card:nth-child(9) { animation-delay: 0.9s; }
.blog-card:nth-child(10) { animation-delay: 1s; }
