.container-bristol-hotel-acomodacoes {
    margin: 0 auto;
    max-width: 1440px;
    width: 100%;
    padding: 120px 64px 0;
    box-sizing: border-box;
}

.container-bristol-hotel-acomodacoes .header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 56px;
    gap: 48px;
}

.container-bristol-hotel-acomodacoes .header-left {
    flex: 1;
}

.container-bristol-hotel-acomodacoes .header-right {
    flex: 1;
    text-align: right;
}

.container-bristol-hotel-acomodacoes .section-title  {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 41px;
    line-height: 1.2;
    margin: 0;
}

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

.container-bristol-hotel-acomodacoes .intro-description {
    line-height: 1.6;
max-width: 640px;
    margin-left: auto;
}

.container-bristol-hotel-acomodacoes .intro-description p {
    margin: 0 0 16px;
}

.container-bristol-hotel-acomodacoes .intro-description p:last-child {
    margin: 0;
}

/* Grid */
.container-bristol-hotel-acomodacoes .slider {
    overflow: hidden;
}

.container-bristol-hotel-acomodacoes .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.container-bristol-hotel-acomodacoes .card {
    background-color: #f6f3f0;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.container-bristol-hotel-acomodacoes .card-image {
    width: 100%;
    height: 272px;
    overflow: hidden;
}

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

.container-bristol-hotel-acomodacoes .card:hover .card-image img {
    transform: scale(1.05);
}

.container-bristol-hotel-acomodacoes .card-content {
    padding: 40px 32px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.container-bristol-hotel-acomodacoes .card-title  {
    font-weight: 500;
    margin: 0 0 12px;
    font-size: 20px;
    line-height: 25.817px;
}

.container-bristol-hotel-acomodacoes .card-bar {
    width: 40px;
    height: 2px;
    background-color: #c2a175;
    margin-bottom: 32px;
}

.container-bristol-hotel-acomodacoes .card-amenities {
    margin-bottom: 32px;
    flex-grow: 1;
}

.container-bristol-hotel-acomodacoes .card-amenities ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.container-bristol-hotel-acomodacoes .card-amenities ul li {
    display: flex;
    align-items: center;
    gap: 6px;
}

.container-bristol-hotel-acomodacoes .card-amenities ul li::before {
    content: "";
    width: 4px;
    height: 4px;
    background-color: #c2a175;
    border-radius: 50%;
    display: inline-block;
}

.container-bristol-hotel-acomodacoes .reserve-btn {
    width: 100%;
    height: 48px;
    border-radius: 8px;
    border: 0.5px solid #957143;
    background: #9E5520;
    color: #FBF8F8;
    font-size: 14px;
    font-weight: 500;
    line-height: 17.617px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.container-bristol-hotel-acomodacoes .reserve-btn:hover {
    background-color: #735835;
}

@media (max-width: 1200px) {
    .container-bristol-hotel-acomodacoes {
        padding: 60px 40px;
    }
    .container-bristol-hotel-acomodacoes .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .container-bristol-hotel-acomodacoes .header {
        flex-direction: column;
        gap: 32px;
    }
    .container-bristol-hotel-acomodacoes .header-right {
        text-align: left;
    }
    .container-bristol-hotel-acomodacoes .intro-description {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .container-bristol-hotel-acomodacoes {
        padding: 40px 20px;
    }
    .container-bristol-hotel-acomodacoes .section-title  {
        font-size: 28px;
    }

    .container-bristol-hotel-acomodacoes .card-content {
        padding: 32px 24px 24px;
    }
    .container-bristol-hotel-acomodacoes .grid {
        display: flex;
        gap: 0;
    }
    .container-bristol-hotel-acomodacoes .card {
        height: auto;
    }
    .container-bristol-hotel-acomodacoes .swiper-pagination {
        position: relative;
        text-align: center;
        margin-top: 32px;
    }
    .container-bristol-hotel-acomodacoes .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        display: inline-block;
        border-radius: 8px;
        background: #D7CCBE;
        opacity: 1;
        margin: 0 4px;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    .container-bristol-hotel-acomodacoes .swiper-pagination-bullet-active {
        background: #C2A175;
        width: 24px;
    }
}
