/* ===== BLOG CAROUSEL ===== */
.blog-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}
.blog-carousel-container {
    overflow: hidden;
    flex: 1;
    border-radius: 15px;
}
.blog-carousel-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}
.blog-carousel-track .blog-card {
    min-width: calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    flex-shrink: 0;
}
.blog-carousel-btn {
    background: rgba(159, 120, 36, 0.2);
    border: 1px solid rgba(159, 120, 36, 0.4);
    color: var(--dourado);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
    z-index: 2;
}
.blog-carousel-btn:hover {
    background: var(--dourado);
    color: var(--preto);
}
.blog-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}
.blog-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(159, 120, 36, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}
.blog-carousel-dot.active {
    background: var(--dourado);
    transform: scale(1.2);
}
.blog-section .blog-card a {
    text-decoration: none;
    color: inherit;
}
.blog-section .blog-card a:hover h3 {
    color: var(--dourado);
}
.blog-card-category {
    display: inline-block;
    font-size: 11px;
    color: var(--dourado);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-weight: 600;
}
.blog-ver-todos {
    text-align: center;
    margin-top: 30px;
}
.btn-ver-blog {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--dourado);
    color: var(--dourado);
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}
.btn-ver-blog:hover {
    background: var(--dourado);
    color: var(--preto);
}

/* Quando há poucos posts - esconder botões e mostrar como grid */
.blog-carousel-track:only-child {
    justify-content: center;
}

/* Responsivo */
@media (max-width: 768px) {
    .blog-carousel-track .blog-card {
        min-width: calc(100% - 0px);
        max-width: calc(100% - 0px);
    }
    .blog-carousel-btn {
        width: 35px;
        height: 35px;
    }
    .blog-carousel-wrapper {
        gap: 5px;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    .blog-carousel-track .blog-card {
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }
}
