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

body {
    background-color: #2b8636 !important;
    background-image: url('img/pattern-background.webp');
    background-repeat: repeat;
    background-size: auto;
    font-family: 'termina', sans-serif;
}

.hero-banner {
    width: 100%;
    position: relative;
}

.hero-banner__image-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
}

.hero-banner__bg {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.hero-banner__logo-wrap {
    position: absolute;
    bottom: 18%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    pointer-events: none;
}

.hero-banner__logo {
    width: clamp(180px, 22vw, 340px);
    height: auto;
    filter: drop-shadow(0 2px 12px rgba(0,0,0,0.35));
}

.intro-lazer {
    padding: 56px 0 72px;
}

.intro-lazer__title {
    color: #ffffff;
    font-size: clamp(1.95rem, 3.9vw, 2.6rem);
    font-weight: 700;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
}

.intro-lazer__scroll-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 72px;
    background-color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    color: #2b8636;
    font-size: 1.43rem;
    transition: background-color 0.2s;
    cursor: pointer;
}

.intro-lazer__scroll-btn:hover {
    background-color: #e8f5e9;
    color: #2b8636;
}

.intro-lazer__scroll-btn i {
    animation: bounce-down 1.4s ease-in-out infinite;
}

@keyframes bounce-down {
    0%, 100% { transform: translateY(0);   opacity: 1; }
    50%       { transform: translateY(6px); opacity: 0.6; }
}

.intro-lazer__card {
    background-color: #0c2e16;
    border-radius: 20px;
    min-height: 520px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 64px 32px;
    text-align: center;
}

.intro-lazer__card-text {
    color: #ffffff;
    font-size: clamp(1.625rem, 3.12vw, 2.275rem);
    font-weight: 400;
    line-height: 1.45;
    margin-bottom: 18px;
    max-width: 100%;
    width: 650px;
}

.intro-lazer__card-text strong {
    font-weight: 700;
}

.intro-lazer__card-line {
    display: block;
    width: 320px;
    max-width: 80%;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.35);
    border-radius: 2px;
}

.hoteis-lit {
    background-color: #f5ede0;
    padding: 72px 0 130px;
    position: relative;
    overflow: hidden;
    border-radius: 0 280px 0 280px;
}


.hoteis-lit__header {
    position: relative;
    z-index: 1;
}

.hoteis-lit__header-line {
    display: block;
    width: 380px;
    height: 3px;
    background-color: #6db859;
    margin-bottom: 12px;
    border-radius: 2px;
    margin-left: -15%;
}

.hoteis-lit__header-title {
    font-family: 'termina', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2.34rem);
    font-weight: 300;
    color: #225d2a;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: left;
}

.hoteis-lit__header-title strong {
    font-weight: 800;
}

.hoteis-lit__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.hotel-card-lit {
    background-color: #d4edc8;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(33.333% - 20px);
    max-width: 320px;
    min-width: 260px;
}

.hotel-card-lit__img-wrap {
    margin: 12px 12px 0;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.hotel-card-lit__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hotel-card-lit__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 18px 30px 30px;
    flex: 1;
}

.hotel-card-lit__badge {
    display: inline-block;
    background-color: #225d2a;
    color: #ffffff;
    font-family: 'termina', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 999px;
    padding: 5px 16px;
    margin-bottom: 12px;
}

.hotel-card-lit__name {
    font-family: 'termina', sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.17rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.hotel-card-lit__desc {
    font-family: 'termina', sans-serif;
    font-size: clamp(0.75rem, 1vw, 0.9rem);
    color: #3a3a3a;
    line-height: 1.55;
    margin-bottom: 20px;
    flex: 1;
}

.hotel-card-lit__btn {
    background-color: #00c732;
    color: #ffffff;
    font-family: 'termina', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 999px;
    padding: 11px 24px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s, transform 0.15s;
}

.hotel-card-lit__btn:hover {
    background-color: #00a828;
    transform: translateY(-2px);
}

.hoteis-caldas {
    background-color: #225d2a;
    padding: 72px 0 80px;
    border-radius: 280px 0;
    margin-top: -50px;
    z-index: 1;
    position: relative;
}

.hoteis-caldas__header-line {
    display: block;
    width: 380px;
    height: 3px;
    background-color: #6db859;
    margin-bottom: 16px;
    border-radius: 2px;
    margin-left: -15%;
}

.hoteis-caldas__header-title {
    font-family: 'termina', sans-serif;
    font-size: clamp(1.4rem, 2.8vw, 2.34rem);
    font-weight: 300;
    color: #ffffff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-align: left;
}

.hoteis-caldas__header-title strong {
    font-weight: 800;
}

.hoteis-caldas__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.hotel-card {
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.13);
    flex: 1 1 calc(25% - 18px);
    max-width: 370px;
    min-width: 220px;
    padding: 20px;
    max-width: 320px;
}

.hotel-card__img {
    display: block;
    margin: auto;
    max-width: 100%;
    width: 100%;
}

.hotel-card__body {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 24px 0 16px;
    flex: 1;
}

.hotel-card__badge {
    display: inline-block;
    background-color: #f0ead8;
    color: #666;
    font-family: 'termina', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    border-radius: 999px;
    padding: 4px 14px;
    margin-bottom: 10px;
}

.hotel-card__name {
    font-family: 'termina', sans-serif;
    font-size: clamp(0.9rem, 1.4vw, 1.17rem);
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.25;
    margin: 16px 0;
    text-transform: uppercase;
}

.hotel-card__desc {
    font-family: 'termina', sans-serif;
    font-size: clamp(0.72rem, 1vw, 0.9rem);
    color: #666;
    line-height: 1.5;
    margin-bottom: 18px;
    flex: 1;
}

.hotel-card__btn {
    background-color: #00c732;
    color: #ffffff;
    font-family: 'termina', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 999px;
    padding: 11px 24px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.2s, transform 0.15s;
}

.hotel-card__btn:hover {
    background-color: #00a828;
    transform: translateY(-2px);
}

.site-footer {
    padding: 36px 0;
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.site-footer__logo-link {
    display: flex;
    align-items: center;
}

.site-footer__logo {
    height: 44px;
    width: auto;
    display: block;
}

.site-footer__item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'termina', sans-serif;
    font-size: clamp(0.85rem, 1.3vw, 1.1rem);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: opacity 0.2s;
}

.site-footer__item:hover {
    opacity: 0.75;
    color: #ffffff;
}

.site-footer__icon {
    font-size: 1.25rem;
    flex-shrink: 0;
}

@media (max-width: 767.98px) {
    .site-footer__inner {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
}

.prog-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

.prog-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.prog-modal {
    position: relative;
    max-width: 70%;
    width: 100%;
    transform: translateY(28px) scale(0.96);
    transition: transform 0.35s ease;
}

.prog-modal-overlay.is-open .prog-modal {
    transform: translateY(0) scale(1);
}

.prog-modal__img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.prog-modal__close {
    position: absolute;
    top: -18px;
    right: -18px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #1a1a1a;
    border: none;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition: background-color 0.2s, transform 0.25s;
}

.prog-modal__close:hover {
    background-color: #f0f0f0;
    transform: rotate(90deg);
}

@media (max-width: 767.98px) {
    .hoteis-lit, .hoteis-caldas {
        border-radius: 0 !important;
    }

    .hero-banner__logo-wrap {
        bottom: 14%;
    }

    .hero-banner__logo {
        width: clamp(130px, 48vw, 220px);
    }

    .intro-lazer {
        padding: 40px 0 52px;
    }

    .intro-lazer__card {
        min-height: 380px;
        padding: 48px 24px;
        border-radius: 14px;
    }

    .intro-lazer__card-line {
        width: 220px;
    }

    .hotel-card {
        flex: 1 1 calc(100% - 12px);
        max-width: none;
    }

    .hoteis-caldas__header-line,
    .hoteis-lit__header-line {
        display: none;
    }

    .hotel-card-lit {
        flex: 1 1 calc(50% - 14px);
        max-width: none;
    }

    .prog-modal__close {
        top: -14px;
        right: -14px;
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-banner__logo-wrap {
        bottom: 10%;
    }

    .intro-lazer__card {
        min-height: 300px;
        padding: 40px 20px;
    }

    .intro-lazer__card-text {
        font-size: 1.43rem;
    }

    .prog-lazer__card {
        padding: 32px 20px;
    }

    .prog-lazer__photos-img {
        width: 85%;
    }

    .prog-lazer__folha {
        right: -5px;
        width: 55%;
    }

    .hotel-card__name {
        font-size: 0.82rem;
    }

    .hotel-card__desc {
        font-size: 0.7rem;
    }

    .hotel-card__btn {
        font-size: 0.7rem;
        padding: 9px 14px;
    }

    .prog-modal-overlay {
        padding: 14px;
    }

    .prog-modal__img {
        border-radius: 10px;
    }
}
