.container-bristol-section-ofertas-pacotes {
    padding: 40px 64px 40px 64px;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 80px;
    box-sizing: border-box;
}

.container-bristol-section-ofertas-pacotes .content {
    flex: 0 0 320px;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.container-bristol-section-ofertas-pacotes .header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.container-bristol-section-ofertas-pacotes .title  {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 41px;
    line-height: 46.323px;

    color: #5A4F4C;
    margin: 0;
}

.container-bristol-section-ofertas-pacotes .title-line {
    width: 41px;
    height: 2px;
    background-color: #9e5520;
    border-radius: 4px;
}

.container-bristol-section-ofertas-pacotes .description {
line-height: 1.62;
    color: #5a4f4c;
}

.container-bristol-section-ofertas-pacotes .btn {
    line-height: 1;
    background-color: #9e5520;
    border: 0.5px solid #957143;
    border-radius: 8px;
    padding: 18px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: opacity .3s ease;
    width: max-content;
}

.container-bristol-section-ofertas-pacotes .btn span {
    color: #fbf8f8;
    text-transform: uppercase;
    text-align: center;
    font-family: Montserrat;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 17.617px; /* 125.833% */
    text-transform: uppercase;
}

.container-bristol-section-ofertas-pacotes .btn:hover {
    opacity: 0.9;
}

.container-bristol-section-ofertas-pacotes .carousel-wrapper {
    flex: 1;
    overflow: hidden;
}

.container-bristol-section-ofertas-pacotes .slider {
    padding: 10px 0;
}

.container-bristol-section-ofertas-pacotes .card {
    display: block;
    position: relative;
    width: 100%;
    height: 480px;
    border-radius: 8px;
    /* overflow: hidden; */
    text-decoration: none;
    border: 1px solid var(--Secundary-100, #F5EBDE);
    background: var(--Secundary-100, #F5EBDE);
    padding: 4px;
}

.container-bristol-section-ofertas-pacotes .card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 8px;
}

.container-bristol-section-ofertas-pacotes .card-label {
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(240, 230, 217, 0.9);
    padding: 8px 16px;
    z-index: 2;
    width: 186px;
    height: 35px;
    border-radius: 0 0 78.74px 0;
}

.container-bristol-section-ofertas-pacotes .card-label span {
    font-size: 14px;
    font-weight: 500;
    color: #9e5520;
}

.container-bristol-section-ofertas-pacotes .card-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 93px;
    height: 91px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px); */
    /* border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.5); */
    z-index: 2;
}

.container-bristol-section-ofertas-pacotes .card-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.container-bristol-section-ofertas-pacotes .card-play:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.container-bristol-section-ofertas-pacotes .nav {
    display: none;
}

@media (max-width: 1024px) {
    .container-bristol-section-ofertas-pacotes {
        flex-direction: column;
        padding: 20px 16px;
        gap: 40px;
    }

    .container-bristol-section-ofertas-pacotes .content {
        max-width: 100%;
        flex: none;
        text-align: center;
        align-items: center;
    }

    .container-bristol-section-ofertas-pacotes .carousel-wrapper {
        width: 100%;
    }

    .container-bristol-section-ofertas-pacotes .nav {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 32px;
    }

    .container-bristol-section-ofertas-pacotes .dots {
        display: flex;
        align-items: center;
        gap: 8px;
        width: auto;
    }

    .container-bristol-section-ofertas-pacotes .dots .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        background: #D7CCBE;
        opacity: 1;
        margin: 0 !important;
        transition: all 0.3s ease;
        border-radius: 4px;
    }

    .container-bristol-section-ofertas-pacotes .dots .swiper-pagination-bullet-active {
        width: 22px;
        background: #9E5520;
    }
}

@media (max-width: 768px) {
    .container-bristol-section-ofertas-pacotes .content {
        align-items: flex-start;
        text-align: left;
        gap: 32px;
    }

    .container-bristol-section-ofertas-pacotes .header {
        align-items: flex-start;
        gap: 24px;
    }

    .container-bristol-section-ofertas-pacotes .title  {
        font-size: 28px;
        line-height: 1.2;
    }

    .container-bristol-section-ofertas-pacotes .title-line {
        background-color: #c2a175;
        width: 40px;
    }

    .container-bristol-section-ofertas-pacotes .description {
        font-size: 15.915px;
        line-height: 25.817px;
    }

    .container-bristol-section-ofertas-pacotes .btn {
    line-height: 1;
        width: 100%;
        height: 40px;
        background-color: #9e5520;
        border: none;
        padding: 0 19.661px;
    }

    .container-bristol-section-ofertas-pacotes .card {
        height: 400px;
    }
}