*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: "termina", sans-serif;
    background-color: #f15a24;
}

#banner {
    background-image: url('img/banner.webp');
    background-size: cover;
    background-position: center;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

#banner img {
    display: block;
    max-width: 95%;
    height: auto;
}

#banner::after {
    content: url('img/figure-top-left.png');
    position: absolute;
    top: 0;
    left: 0;
}
#banner::before {
    content: url('img/figure-top-right.png');
    position: absolute;
    top: 0;
    right: 0;
}

.wam-section {
    background-color: #f15a24;
    padding: 36px 20px 50px;
    text-align: center;
}

.wam-section .headline {
    color: #fff;
        font-size: clamp(23.23px, 3.19vw, 37.75px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 10px;
}
.wam-section .subline {
    color: #fff;
        font-size: clamp(18.88px, 1.89vw, 23.23px);
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 26px;
}
.wam-section .section-title {
    color: #fff;
        font-size: clamp(21.78px, 2.62vw, 30.49px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 32px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 100%;
    width: 1300px;
    margin: 50px auto 0 ;
}

.cards-grid .last-row {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 20px;
}
.cards-grid .last-row .hotel-card {
    width: calc(25% - 15px);
    max-width: 300px;
}

.hotel-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(0,0,0,.15);
    display: flex;
    flex-direction: column;
    min-height: 340px;
    position: relative;
    margin-bottom: 50px;
}

.hotel-card::after {
    content: url('img/10.png');
    position: absolute;
    bottom: -70px;
    left: 26%;
    transition: opacity 0.35s cubic-bezier(0.4,0,0.2,1);
    opacity: 1;
}
.hotel-card.hide-after::after {
    opacity: 0;
    pointer-events: none;
}

.card-front,
.card-dates {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    flex: 1;
}
.card-dates {
    display: none;
}

.card-img {
    padding: 15px 15px 0;
    max-width: 100%;
    height: auto;
    display: block;
}

.card-body {
    padding: 12px 14px 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.location-badge {
    display: inline-block;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 900;
    color: #000;
    padding: 3px 10px;
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 20px;
    align-self: center;
    background-color: #eee8df;
}

.hotel-name {
    font-size: 15.73px;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 6px;
    text-align: center;
    line-height: 1.3;
}

.hotel-desc {
    font-size: 13.92px;
    color: #555;
    line-height: 1.5;
    flex: 1;
    text-align: center;
}

.btn-ver-datas {
    display: block;
    width: 220px;
    margin: 14px auto 50px;
    padding: 15px 0;
    background: #14c644;
    color: #fff;
    font-family: "termina", sans-serif;
    font-size: 14.52px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s, transform .1s;
}
.btn-ver-datas:hover {
    background: #388e3c;
    transform: translateY(-1px);
}
.btn-ver-datas:active {
    transform: translateY(0);
}

.card-dates {
    padding: 16px 14px 16px;
    display: none;
    flex-direction: column;
    align-items: center;
}

.dates-title {
    font-size: 14.52px;
    font-weight: 900;
    text-transform: uppercase;
    color: #1a1a1a;
    margin-bottom: 12px;
    letter-spacing: .5px;
    text-align: center;
}

.dates-list {
    list-style: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 7px;
    flex: 1;
    margin-bottom: 12px;
}
.dates-list::-webkit-scrollbar {
    width: 4px;
}
.dates-list::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.dates-list li a {
    display: block;
    padding: 8px 12px;
    background: #f0faf0;
    border: 1.5px solid #4caf50;
    border-radius: 8px;
    text-decoration: none;
    color: #2e7d32;
    font-size: 13.92px;
    font-weight: 700;
    text-align: center;
    transition: background .18s, color .18s;
}
.dates-list li a:hover {
    background: #4caf50;
    color: #fff;
}

.btn-voltar {
    display: block;
    width: 100%;
    padding: 9px 0;
    background: transparent;
    color: #f15a24;
    font-family: "termina", sans-serif;
    font-size: 13.2px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid #f15a24;
    border-radius: 8px;
    cursor: pointer;
    transition: background .2s, color .2s;
    margin-top: auto;
}
.btn-voltar:hover {
    background: #f15a24;
    color: #fff;
}

.card-front,
.card-dates {
    animation: fadeIn .3s ease forwards;
}
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 860px) {
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cards-grid .last-row .hotel-card {
        max-width: none;
        width: 100%;
    }
}
@media (max-width: 500px) {
    .cards-grid {
        grid-template-columns: 1fr;
    }
    .cards-grid .last-row {
        flex-direction: column;
    }
    .cards-grid .last-row .hotel-card {
        width: 100%;
        max-width: none;
    }
}

.datas-especiais {
    background: radial-gradient(ellipse at 70% 50%, #1a7a1a 0%, #0d4a0d 55%, #062806 100%);
    padding: 100px 24px 100px;
    font-family: "termina", sans-serif;
}

.datas-especiais .de-title {
    color: #fff;
    font-size: clamp(18px, 2.4vw, 28px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 36px;
    text-align: left;
    padding-left: 4px;
    max-width: 100%;
    width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.de-card {
    background: #fff;
    border-radius: 50px;
    max-width: 100%;
    width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
    box-shadow: 0 8px 40px rgba(0,0,0,.35);
    min-height: 240px;
    position: relative;
}

.de-card::after {
    content: url('img/4010.png');
    position: absolute;
    top: -240px;
    right: -110px;
    height: 120px;
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: scale(0.8);
}

.de-card-img-wrap {
    flex: 0 0 42%;
    max-width: 42%;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
}
.de-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

.de-card-body {
    flex: 1;
    padding: 28px 28px 24px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.de-front { display: flex; flex-direction: column; height: 100%; }
.de-dates-panel { display: none; flex-direction: column; height: 100%; }

.de-badge {
    display: inline-block;
    background: #f0ede5;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 900;
    color: #000;
    padding: 4px 12px;
    letter-spacing: .6px;
    text-transform: uppercase;
    margin-bottom: 10px;
    align-self: flex-start;
}

.de-hotel-name {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 900;
    color: #111;
    text-transform: uppercase;
    margin-bottom: 10px;
    line-height: 1.2;
}

.de-hotel-desc {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 40px;
}

.de-dates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.de-date-btn {
    background: #2b4803;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 11px 8px;
    font-family: "termina", sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: block;
    transition: background .18s, transform .1s;
    line-height: 1.3;
}
.de-date-btn:hover { background: #0d3d0d; transform: translateY(-1px); }
.de-date-btn:active { transform: translateY(0); }

.de-dates-panel {
    justify-content: center;
}
.de-dates-panel .de-panel-title {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    color: #111;
    margin-bottom: 14px;
    letter-spacing: .5px;
}
.de-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 16px;
    overflow-y: auto;
    max-height: 180px;
}
.de-links-list::-webkit-scrollbar { width: 4px; }
.de-links-list::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

.de-links-list li a {
    display: block;
    padding: 9px 14px;
    background: #eaf4ea;
    border: 1.5px solid #1a5c1a;
    border-radius: 8px;
    text-decoration: none;
    color: #1a5c1a;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    transition: background .18s, color .18s;
}
.de-links-list li a:hover { background: #1a5c1a; color: #fff; }

.de-btn-voltar {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 2px solid #1a5c1a;
    border-radius: 8px;
    color: #1a5c1a;
    font-family: "termina", sans-serif;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .8px;
    padding: 8px 18px;
    cursor: pointer;
    align-self: flex-start;
    transition: background .2s, color .2s;
}
.de-btn-voltar:hover { background: #1a5c1a; color: #fff; }

@media (max-width: 680px) {
    .de-card { flex-direction: column; }
    .de-card-img-wrap {
        flex: none;
        max-width: none;
        width: 100%;
        height: 200px;
    }
    .de-card-body { padding: 20px 18px 22px; }
    .de-dates-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 380px) {
    .de-dates-grid { grid-template-columns: 1fr; }
}

footer {
    background-color: #ffc02c;
    position: relative;
}

footer .flex {
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 100px;
}

@media (max-width: 1210px) {
    footer {
        padding: 50px 0;
    }
    footer .flex {
        flex-direction: column;
        gap: 30px;
    }

    :not(.hotel-card)::after,
    :not(.hotel-card)::before {
        display: none !important;
    }
}

footer::after {
    content: url('img/figure-bottom-left.png');
    position: absolute;
    bottom: 0;
    left: 0;
    height: 270px;
    overflow: hidden;
}

@media (max-width: 1600px) {
    footer::after {
        left: -280px;
    }
}

footer::before {
    content: url('img/figure-bottom-right.png');
    position: absolute;
    bottom: 0;
    right: 0;
    height: 160px;
    overflow: hidden;
}

img {
    max-width: 100%;
    height: auto;
}