/* ========================================
   BLOG STYLES - Ferrocorte
   Mantém padrão visual do site principal
======================================== */

/* Header navigation */
.header-nav {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-nav a {
    color: rgba(255, 255, 255, 0.9);
    padding: 4px 0;
}

.header-nav a:hover {
    color: var(--yellow);
}

.header-nav span {
    color: rgba(255, 255, 255, 0.45);
}

@media (min-width: 769px) {
    .header-content {
        justify-content: flex-start;
    }

    .header-nav {
        flex: 0 0 auto;
        justify-content: flex-start;
        margin-top: 4px;
    }

    .header-cta {
        margin-left: auto;
    }
}

.products-section {
    scroll-margin-top: 120px;
}

/* Breadcrumb */
.breadcrumb {
    background: #f5f5f5;
    padding: 1rem 0;
    font-size: 0.9rem;
    margin-top: 0;
}

.breadcrumb a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--orange);
}

.breadcrumb i {
    margin: 0 0.5rem;
    font-size: 0.7rem;
    color: #666;
}

.breadcrumb span {
    color: #666;
}

/* Hero do Blog */
.blog-hero {
    background: linear-gradient(135deg, var(--light-blue) 0%, #004a99 100%);
    padding: 3rem 0;
    text-align: center;
    color: white;
}

.blog-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.blog-intro {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    opacity: 0.95;
}

/* Grid de Artigos */
.blog-articles {
    padding: 4rem 0;
    background: #f9f9f9;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

/* Card de Artigo */
.blog-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.blog-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--orange);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.blog-card-content time {
    display: block;
    color: #999;
    font-size: 0.85rem;
    margin-bottom: 0.8rem;
    font-weight: 500;
}

.blog-card-content h2 {
    color: var(--light-blue);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover h2 {
    color: var(--orange);
}

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

.blog-card-content .read-more {
    color: var(--orange);
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-card:hover .read-more {
    gap: 0.8rem;
}

/* CTA Banner no Blog */
.blog-cta-banner {
    background: linear-gradient(135deg, var(--light-blue) 0%, #004a99 100%);
    padding: 3rem 0;
    text-align: center;
    color: white;
}

.blog-cta-banner .banner-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.blog-cta-banner .banner-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.btn-cta-banner {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(252, 129, 1, 0.3);
}

.btn-cta-banner:hover {
    background: #e57300;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 129, 1, 0.4);
}

/* ========================================
   ESTILOS PARA POSTS INDIVIDUAIS
======================================== */

.blog-post {
    padding: 2rem 0 4rem;
    background: white;
}

.post-header {
    text-align: center;
    margin: 2rem 0 3rem;
}

.post-header h1 {
    font-size: 2.5rem;
    color: var(--light-blue);
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.post-meta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    color: #666;
    font-size: 0.95rem;
}

.post-meta time,
.post-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.post-featured-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.8;
    color: #333;
}

.post-content h2 {
    color: var(--light-blue);
    font-size: 1.8rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--orange);
}

.post-content h3 {
    color: #004a99;
    font-size: 1.4rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content ul,
.post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.post-content strong {
    color: var(--light-blue);
    font-weight: 600;
}

.post-content a {
    color: var(--orange);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.post-content a:hover {
    color: #e57300;
}

.post-content blockquote {
    background: #f5f5f5;
    border-left: 4px solid var(--orange);
    padding: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #555;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.post-content th,
.post-content td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.post-content th {
    background: var(--light-blue);
    color: white;
    font-weight: 600;
}

.post-content tr:hover {
    background: #f9f9f9;
}

/* CTA dentro do Post */
.post-cta {
    background: linear-gradient(135deg, var(--light-blue) 0%, #004a99 100%);
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    margin: 3rem 0;
    color: white;
}

.post-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.post-cta .btn-product {
    display: inline-block;
    background: var(--orange);
    color: white;
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.post-cta .btn-product:hover {
    background: #e57300;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(252, 129, 1, 0.4);
}

/* Artigos relacionados */
.related-posts {
    margin: 3rem 0 0;
    padding-top: 2rem;
    border-top: 1px solid #d6d6d6;
}

.related-posts h2 {
    font-size: 1.6rem;
    color: var(--light-blue);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
}

.related-posts .blog-card-image {
    height: 180px;
}

.related-posts .blog-card-content h3 {
    color: var(--light-blue);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.related-posts .blog-card:hover h3 {
    color: var(--orange);
}

.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.blog-pagination button {
    background: #fff;
    border: 1px solid #d0d0d0;
    color: var(--light-blue);
    padding: 0.55rem 0.9rem;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.blog-pagination button:hover {
    border-color: var(--light-blue);
    color: #004a99;
}

.blog-pagination button.active {
    background: var(--light-blue);
    color: #fff;
    border-color: var(--light-blue);
}

/* ========================================
   ESTILOS PARA INDEX.HTML (Preview)
======================================== */

.blog-preview-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.blog-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--light-blue) 0%, var(--orange) 50%, var(--light-blue) 100%);
}

/* Header da seção */
.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    gap: 2rem;
}

.blog-header-content {
    flex: 1;
}

.blog-header-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--light-blue) 0%, #004a99 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 102, 204, 0.3);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

.section-subtitle {
    text-align: left;
    color: #666;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    margin-bottom: 0;
}

.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.blog-preview-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-preview-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--light-blue) 0%, var(--orange) 100%);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.blog-preview-card:hover::before {
    transform: scaleX(1);
}

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

/* Wrapper da imagem com badge */
.blog-card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 200px;
}

.blog-card-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Badges de categoria */
.blog-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    animation: slideInRight 0.5s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.badge-construction,
.badge-products,
.badge-materials {
    background: rgba(252, 129, 1, 0.95);
    color: white;
}

/* Conteúdo do card */
.blog-preview-content {
    padding: 1.8rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Meta informações */
.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: #999;
    font-size: 0.85rem;
    font-weight: 500;
}

.blog-date i,
.blog-read-time i {
    color: var(--orange);
    font-size: 0.9rem;
}

.blog-preview-content h3 {
    color: var(--light-blue);
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    font-weight: 600;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-preview-card:hover h3 {
    color: var(--orange);
}

.blog-preview-content p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    flex-grow: 1;
}

.blog-link {
    color: var(--orange);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.blog-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}

.blog-link:hover::after {
    width: calc(100% - 1.5rem);
}

.blog-link:hover {
    gap: 0.8rem;
    color: #e57300;
}

.blog-link i {
    transition: transform 0.3s ease;
}

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

/* CTA Section */
.blog-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-blog {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--light-blue) 0%, #004a99 100%);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-blog::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn-blog:hover::before {
    left: 100%;
}

.btn-blog:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.5);
    gap: 1.3rem;
}

.btn-blog i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

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

/* CTAs nos Produtos */
.product-learn-more {
    display: block;
    text-align: center;
    margin-top: 0.8rem;
    color: var(--light-blue);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.product-learn-more:hover {
    color: var(--orange);
}

.product-learn-more i {
    margin-right: 0.3rem;
}

/* Links no Rodapé */
.footer-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--orange);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 768px) {
    .breadcrumb {
        font-size: 0.85rem;
        padding: 0.8rem 0;
    }

    .blog-hero h1 {
        font-size: 2rem;
    }

    .blog-intro {
        font-size: 1rem;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card-content h2 {
        font-size: 1.15rem;
    }

    .blog-cta-banner .banner-content h2 {
        font-size: 1.5rem;
    }

    .post-header h1 {
        font-size: 1.8rem;
    }

    .post-content {
        font-size: 1rem;
    }

    .post-content h2 {
        font-size: 1.5rem;
    }

    .post-content h3 {
        font-size: 1.2rem;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .logo {
        order: 1;
    }

    .header-cta {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .header-nav {
        order: 2;
        width: 100%;
        justify-content: center;
        margin: 0.4rem 0;
    }

    /* Blog Preview Section - Mobile */
    .blog-header {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .section-subtitle {
        text-align: center;
    }

    .blog-header-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-card-image-wrapper {
        height: 200px;
    }

    .blog-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }

    .blog-meta {
        gap: 1rem;
    }

    .blog-preview-content h3 {
        font-size: 1.15rem;
    }

    .btn-blog {
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-links span {
        display: none;
    }
}

@media (max-width: 480px) {
    .blog-hero {
        padding: 2rem 0;
    }

    .blog-hero h1 {
        font-size: 1.6rem;
    }

    .blog-articles {
        padding: 2rem 0;
    }

    .blog-preview-section {
        padding: 3rem 0;
    }

    .blog-header-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .blog-card-image-wrapper {
        height: 180px;
    }

    .blog-preview-content {
        padding: 1.5rem;
    }

    .blog-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }

    .btn-blog,
    .btn-cta-banner,
    .post-cta .btn-product {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
}

/* ========================================
   ESTILOS PADRONIZADOS - CONTEÚDO DOS ARTIGOS
======================================== */

/* Imagem Featured */
.post-featured-image {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
}

/* Lead - Parágrafo de Introdução */
.post-lead {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

/* Grid 2 Colunas */
.post-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 25px 0;
}

/* Boxes Lado a Lado */
.post-box {
    padding: 25px;
    border-radius: 8px;
}

.post-box h3 {
    margin: 0 0 15px 0;
    font-size: 1.2rem;
}

.post-box p {
    margin: 8px 0;
    line-height: 1.6;
}

/* Box Azul */
.post-box-blue {
    background: var(--light-blue);
    color: #fff;
}

.post-box-blue h3,
.post-box-blue p,
.post-box-blue strong {
    color: #fff;
}

/* Box Laranja */
.post-box-orange {
    background: var(--orange);
    color: #fff;
}

.post-box-orange h3,
.post-box-orange p,
.post-box-orange strong {
    color: #fff;
}

/* Tip Box - Dica */
.post-tip {
    background: #f5f5f5;
    border-left: 4px solid var(--orange);
    padding: 15px 20px;
    margin: 25px 0;
    color: #333;
    line-height: 1.6;
}

.post-tip strong {
    color: var(--orange);
}

/* List Box - Caixa com Lista */
.post-list-box {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.post-list-box p {
    margin: 8px 0;
    color: #333;
    line-height: 1.6;
}

.post-list-box p strong {
    color: var(--light-blue);
}

/* Checklist */
.post-checklist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.post-checklist li {
    padding: 12px 15px;
    margin: 8px 0;
    background: #f5f5f5;
    border-radius: 5px;
    color: #333;
    line-height: 1.5;
}

.post-checklist li::before {
    content: "✓ ";
    color: var(--light-blue);
    font-weight: bold;
}

/* Error List */
.post-errorlist {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.post-errorlist li {
    padding: 12px 15px;
    margin: 8px 0;
    background: #fff5f5;
    border-left: 3px solid #dc3545;
    color: #333;
    line-height: 1.5;
}

.post-errorlist li::before {
    content: "✗ ";
    color: #dc3545;
    font-weight: bold;
}

/* CTA Box Final */
.post-cta-box {
    background: var(--light-blue);
    color: #fff;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    font-size: 1.05rem;
    line-height: 1.6;
    margin-top: 30px;
}

.post-cta-box strong {
    color: #fff;
}

/* Responsivo */
@media (max-width: 768px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
    
    .post-featured-image {
        max-height: 220px;
    }
    
    .post-lead {
        font-size: 1rem;
    }
    
    .post-box {
        padding: 20px;
    }
}

/* ========================================
   BLOG SWIPER - Index Preview e Blog Page
======================================== */
.blogSwiper,
.blogGridSwiper {
    padding: 0 50px 50px;
    position: relative;
    overflow: visible;
}

.blogSwiper .swiper-wrapper,
.blogGridSwiper .swiper-wrapper {
    padding-bottom: 10px;
}

.blogSwiper .swiper-slide,
.blogGridSwiper .swiper-slide {
    height: auto;
}

.blogSwiper .blog-card,
.blogGridSwiper .blog-card {
    height: 100%;
    width: 100%;
}

.blogSwiper .blog-card-link,
.blogGridSwiper .blog-card-link {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blogSwiper .swiper-button-next,
.blogSwiper .swiper-button-prev,
.blogGridSwiper .swiper-button-next,
.blogGridSwiper .swiper-button-prev {
    color: #001f5c;
    background: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.blogSwiper .swiper-button-next:after,
.blogSwiper .swiper-button-prev:after,
.blogGridSwiper .swiper-button-next:after,
.blogGridSwiper .swiper-button-prev:after {
    font-size: 20px;
}

.blogSwiper .swiper-button-next:hover,
.blogSwiper .swiper-button-prev:hover,
.blogGridSwiper .swiper-button-next:hover,
.blogGridSwiper .swiper-button-prev:hover {
    background: var(--orange);
    color: #fff;
}

.blogSwiper .swiper-pagination-bullet,
.blogGridSwiper .swiper-pagination-bullet {
    background: #001f5c;
    opacity: 0.3;
    width: 12px;
    height: 12px;
}

.blogSwiper .swiper-pagination-bullet-active,
.blogGridSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--orange);
}

.blogSwiper .swiper-pagination,
.blogGridSwiper .swiper-pagination {
    z-index: 0;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    display: flex;
    position: static;
}

/* Responsivo para Swipers */
@media (max-width: 768px) {
    .blogSwiper,
    .blogGridSwiper {
        padding: 0 20px 40px;
    }
    
    .blogSwiper .swiper-button-next,
    .blogSwiper .swiper-button-prev,
    .blogGridSwiper .swiper-button-next,
    .blogGridSwiper .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .blogSwiper .swiper-button-next:after,
    .blogSwiper .swiper-button-prev:after,
    .blogGridSwiper .swiper-button-next:after,
    .blogGridSwiper .swiper-button-prev:after {
        font-size: 16px;
    }
}

