.container-bristol-destino-others {
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
    padding: 80px 64px 0;
    box-sizing: border-box;
}

/* Header */
.container-bristol-destino-others .header {
    display: flex;
    justify-content: space-between;
    gap: 80px;
    margin-bottom: 64px;
}

.container-bristol-destino-others .header-left {
    width: 336px;
}

.container-bristol-destino-others .title  {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 40px;
    line-height: 115%;
    color: #5A4F4C;
    margin: 0;
}

.container-bristol-destino-others .bar {
    width: 40px;
    height: 2px;
    background-color: #c2a175;
    margin-top: 24px;
}

.container-bristol-destino-others .text {
    color: #5A4F4C;
    max-width: 638px;
    line-height: 1.6;
}

/* Carousel */
.container-bristol-destino-others .carousel-wrapper {
    position: relative;
    width: 100%;
}

.container-bristol-destino-others .slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.container-bristol-destino-others .card {
    position: relative;
    width: 100%;
    height: 440px;
    border-radius: 8px;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.container-bristol-destino-others .card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.container-bristol-destino-others .card:hover img {
    transform: scale(1.05);
}

.container-bristol-destino-others .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 24px;
    box-sizing: border-box;
}

.container-bristol-destino-others .card-info {
    display: flex;
    flex-direction: column;
}

.container-bristol-destino-others .card-title  {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    line-height: 30px;

    font-size: 24px;
    color: #FFFFFF;
    margin: 0;
}

.container-bristol-destino-others .card-subtitle  {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFF;
    opacity: 0.8;
}

.container-bristol-destino-others .card-arrow {
    width: 28px;
    height: 28px;
    background-color: #9e5520;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: background-color 0.3s ease;
}

.container-bristol-destino-others .card:hover .card-arrow {
    background-color: #735835;
}

/* Navigation */
.container-bristol-destino-others .navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 48px;
}

.container-bristol-destino-others .nav-btn {
    width: 44px;
    height: 44px;
    border: 1px solid #735835;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background: transparent;
    color: #735835;
    transition: all 0.3s ease;
}

.container-bristol-destino-others .nav-btn:hover {
    background-color: #735835;
    color: #FFFFFF;
}

.container-bristol-destino-others .nav-btn.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.container-bristol-destino-others .pagination {
    display: none;
    font-weight: 500;
    font-size: 18px;
    color: #735835;
    min-width: 40px;
    text-align: center;
    width: auto;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.container-bristol-destino-others .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: #C2A175;
    border-radius: 4px;
    opacity: 0.5;
    transition: all 0.3s;
    margin: 0 !important;
}

.container-bristol-destino-others .swiper-pagination-bullet-active {
    width: 22px;
    opacity: 1;
}

@media (max-width: 1024px) {
    .container-bristol-destino-others {
        padding: 60px 40px;
    }
    .container-bristol-destino-others .header {
        flex-direction: column;
        gap: 24px;
        margin-bottom: 24px;
    }
    .container-bristol-destino-others .text {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .container-bristol-destino-others .header-left {
        width: 100%;
    }
    .container-bristol-destino-others {
        padding: 40px 20px 0;
    }
    .container-bristol-destino-others .title  {
        font-size: 28px;
    }
    .container-bristol-destino-others .card {
        height: 440px;
    }
    .container-bristol-destino-others .pagination {
        display: none;
    }
    .container-bristol-destino-others .navigation {
        margin-top: 32px;
    }
}
