/* Estilo base */
.slide-destaques.swiper {
    width: 1200px;
    height: 100%;
    border-radius: 10px;
}

.slide-entrevistas.swiper {
    width: 922px;
    height: 500px;
    border-radius: 10px;
}

.swiper-slide {
    text-align: center;
    justify-content: center;
    align-items: center;
}

.slide-destaques .swiper-slide img {
    height: 600px;
    border-radius: 10px;
    object-fit: cover !important;
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
    background: linear-gradient(0deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .2) 80%, rgba(0, 0, 0, .4));
}

.slide-entrevistas .swiper-slide img {
    height: 500px;
    border-radius: 10px;
    object-fit: cover !important;
    -webkit-backdrop-filter: blur(9px);
    backdrop-filter: blur(9px);
    background: linear-gradient(0deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .2) 80%, rgba(0, 0, 0, .4));
}

.swiper-slide h1 {
    -webkit-box-orient: vertical;
    font-weight: 600;
    letter-spacing: -0.04em;
    font-size: 42px;
    padding: 42px;
    line-height: 58px !important;
    text-align: start;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    color: #FF0;
    max-height: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
}

.swiper-slide h2 {
    -webkit-box-orient: vertical;
    position: absolute;
    top: -2%;
    width: 100%;
    font-weight: 600;
    letter-spacing: -0.04em;
    text-align: justify;
    font-size: 32px;
    padding: 42px;
    line-height: 46px !important;
    color: whitesmoke;
}

.swiper-pagination {
    position: static;
    text-align: center;
    transition: .3s opacity;
    transform: translate3d(0, 0, 0);
    z-index: 10;
    padding-top: 10px;
}

.swiper-pagination-bullet {
    width: 52px;
    height: 6px;
    border-radius: 10px;
    text-align: center;
    line-height: 14px;
    font-size: 12px;
    color: #000;
    opacity: 1;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 3px !important;
}

.swiper-pagination-bullet-active {
    color: rgba(0, 0, 0, 0.25);
    background: royalblue;
}

.swiper-button-prev,
.swiper-button-next {
    top: 50% !important;
    transform: translateY(-50%);
    height: auto; /* opcional, para remover fixo */
    z-index: 10;
    color: white;
}

.picture-wrapper {
    position: relative;
    display: block;
    max-width: 100%;
}

.picture-wrapper img {
    width: 100%;
    display: block;
}

.picture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 0, 0, .6), rgba(0, 0, 0, .2) 40%, rgba(0, 0, 0, .2) 80%, rgba(0, 0, 0, .4));
    z-index: 1;
}

/* Tablets (até 768px) */
@media (max-width: 768px) {
    .slide-destaques.swiper,
    .slide-entrevistas.swiper {
        width: 100% !important;
        height: auto !important;
        line-height: 40px;
    }

    .slide-destaques .swiper-slide img,
    .slide-entrevistas .swiper-slide img {
        width: 100% !important;
        height: auto !important;
        border-radius: 10px;
    }

    .swiper-slide h1 {
        font-size: 32px;
        padding: 30px;
        line-height: normal !important;
    }

    .swiper-slide h2 {
        font-size: 18px;
        padding: 30px;
        line-height: normal !important;
    }

    .swiper-pagination-bullet {
        width: 40px;
        height: 12px;
        font-size: 11px;
        margin: 0 2px !important;
    }

    .swiper-button-prev,
    .swiper-button-next {
        top: 50% !important;
        transform: translateY(-50%);
        height: auto; /* opcional, para remover fixo */
        z-index: 10;
    }
}

/* Celulares grandes (até 480px) */
@media (max-width: 480px) {
    .slide-destaques.swiper,
    .slide-entrevistas.swiper {
        width: 100% !important;
        height: auto !important;
    }

    .slide-destaques .swiper-slide img,
    .slide-entrevistas .swiper-slide img {
        width: 100% !important;
        height: 350px !important;
        border-radius: 10px;
    }

    .swiper-slide h1 {
        font-size: 24px;
        padding: 20px;
        line-height: normal !important;
    }

    .swiper-slide h2 {
        font-size: 16px;
        padding: 20px;
        line-height: normal !important;
    }
}

/* Celulares pequenos (até 390px) */
@media (max-width: 390px) {
    .slide-destaques.swiper,
    .slide-entrevistas.swiper {
        width: 100% !important;
        height: auto !important;
    }

    .slide-destaques .swiper-slide img,
    .slide-entrevistas .swiper-slide img {
        width: 100% !important;
        height: 350px !important;
        border-radius: 10px;
    }

    .swiper-slide h1 {
        font-size: 20px;
        padding: 16px;
        line-height: normal !important;
    }

    .swiper-slide h2 {
        font-size: 14px;
        padding: 16px;
        line-height: normal !important;
    }

    .swiper-pagination-bullets {
        display: flex;
        justify-content: center;
        align-content: center;
        padding-top: 20px;
        padding-bottom: 20px;
        background: #fff;
    }
}