/* Pacotes */
section.title__page {
    background: url(../img/title-pacotes.jpg) center center no-repeat !important;
    background-size: cover !important;
}

section.pacotes {
    background: #f9f9f9;
    padding: 120px 0;
}

section.pacotes .pacotes__title {
    text-align: center;
    margin-bottom: 60px;
}

section.pacotes h2 {
    font-size: 30px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

section.pacotes .pacotes__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

/* Show 3 items per row */
section.pacotes .pacotes__list-item {
    flex: 0 0 calc((100% - 60px) / 3); /* 2 gaps of 30px when three items */
    box-sizing: border-box;
}

section.pacotes .pacotes__list-item .pacotes__list-box {
    display: flex;
    flex-direction: column;
    height: 100%;
}


section.pacotes .pacotes__list-item .pacotes__list-box {
    background: #161616;
    text-align: center;
    color: #fff;
    padding-bottom: 40px;
}

section.pacotes .pacotes__list-item .pacotes__list-dados {
    text-align: left;
    margin-top: 30px;
}

section.pacotes .pacotes__list-item .pacotes__list-dados strong {
    color: #f5f5f5;
    font-weight: 600;
}


section.pacotes .pacotes__list-item img {
    display: block;
    width: 100%;
    object-fit: cover;
}

section.pacotes .pacotes__list-item h3 {
    font-size: 20px;
    margin: 20px 0;
    margin-top: 40px;
    padding: 0 50px;
    color: var(--dourado);
    font-weight: 600;
}

section.pacotes .pacotes__list-item p {
    font-size: 16px;
    line-height: 1.6;
    padding: 0 35px;
}

section.pacotes .pacotes__list-item a.cta__primary {
    margin: auto;
    text-transform: none;
    font-size: 16px;
    width: 100%;
    justify-content: center;
}

/* Responsive: 2 per row on medium screens, 1 per row on small */
@media (max-width: 992px) {
    section.pacotes .pacotes__list-item {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

@media (max-width: 576px) {
    section.pacotes .pacotes__list-item {
        flex: 0 0 100%;
    }
    section.pacotes .pacotes__list-item img {
        height: 180px;
    }
}