html {
    scroll-behavior: smooth;
}

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

img {
    -webkit-user-drag: none;
    -webkit-user-select: none;
    user-select: none;
}

body {
    font-family: termina, sans-serif;
    background: #fff;
    color: #1a1a1a;
}

/* Banner */
.banner {
    width: 100%;
    aspect-ratio: 1920 / 957;
    background-image: url('img/att-16-06/banner.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
}

/*Logos Strip  */
.logos-strip {
    background-color: #3CB800;
    width: 100%;
    padding: 14px 32px;
    overflow: hidden;
}

.logos-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 20px;
    max-width: 1400px;
    margin: 0 auto;
}

.logos-strip__logo {
    height: clamp(28px, 3vw, 42px);
    width: auto;
    object-fit: contain;
    flex-shrink: 1;
}

@media (max-width: 576px) {
    .logos-strip {
        padding: 28px 24px;
    }

    .logos-strip__inner {
        flex-direction: column;
        align-items: center;
        gap: 28px;
    }

    .logos-strip__logo {
        height: 38px;
    }
}

/*Jogos do Brasil  */
.jogos-brasil {
    background-image: url('img/background-com-textura-verde.webp');
    background-size: cover;
    background-position: center;
    padding: 60px 0 70px;
    text-align: center;
}

.btn-resgate,
.btn-amarelo {
    display: inline-block;
    background-color: #FFCA00;
    color: #1a4500;
    font-family: termina, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 14px 44px;
    border-radius: 50px;
    text-decoration: none;
    transition: filter 0.2s ease;
}

.btn-resgate {
    margin-bottom: 44px;
}

.btn-resgate:hover,
.btn-amarelo:hover {
    filter: brightness(1.08);
    color: #1a4500;
}

.jogos-brasil__titulo {
    font-family: termina, sans-serif;
    font-weight: 700;
    color: #fff;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 40px;
}

.jogos-brasil__cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0 16px;
}

.jogos-brasil__card {
    display: block;
    flex: 1 1 240px;
    max-width: 320px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.jogos-brasil__card:hover {
    transform: scale(1.04);
}

.jogos-brasil__card img {
    display: block;
    width: 100%;
    height: auto;
}

.jogos-brasil__card.passou {
    cursor: default;
    pointer-events: none;
}

.jogos-brasil__card.passou img {
    filter: grayscale(1);
    opacity: 0.75;
}

@media (max-width: 576px) {
    .jogos-brasil {
        padding: 48px 0 56px;
    }

    .jogos-brasil__cards {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .jogos-brasil__card {
        width: 85%;
        max-width: 360px;
        flex: none;
    }
}

/*Outros Jogos  */
.outros-jogos {
    background-image: url('img/background-com-textura-verde.webp');
    background-size: cover;
    background-position: center;
    padding: 20px 0 70px;
    text-align: center;
}

.outros-jogos__titulo {
    font-family: termina, sans-serif;
    color: #fff;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 32px;
    font-weight: 400;
}

.outros-jogos__titulo strong {
    font-weight: 700;
}

.outros-jogos__cards {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    padding: 0 16px;
}

.outros-jogos__card {
    flex: 1 1 220px;
    max-width: 340px;
}

.outros-jogos__card img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 576px) {
    .outros-jogos__cards {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .outros-jogos__card {
        width: 85%;
        max-width: 360px;
        flex: none;
    }
}

/*Timeline  */
.timeline {
    background-image: url('img/background-com-textura-verde.webp');
    background-size: cover;
    background-position: center;
    width: 100%;
}

.timeline img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    margin: 0 auto;
}

@media (max-width: 1199px) {
    .timeline {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .timeline img {
        max-width: none;
        min-width: 1200px;
    }
}

/*Polaroid Section  */
.polaroid-section {
    background-image: url('img/background-com-textura-verde.webp');
    background-size: cover;
    background-position: center;
    padding: 70px 0;
}

.polaroid-section__titulo {
    font-family: termina, sans-serif;
    font-weight: 700;
    color: #FFCA00;
    font-size: clamp(1.2rem, 2vw, 1.7rem);
    text-transform: uppercase;
    line-height: 1.35;
    margin-bottom: 24px;
    text-align: center;
}

.polaroid-section__texto {
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    text-align: center;
    margin-bottom: 36px;
    font-family: termina, sans-serif;
}

.polaroid-section__img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

@media (max-width: 767px) {
    .polaroid-section {
        padding: 48px 0;
        text-align: center;
    }

    .polaroid-section__texto {
        text-align: center;
    }

    .polaroid-section__img {
        margin-top: 40px;
        max-width: 300px;
    }
}

/*Card�pio  */
.cardapio {
    background-image: url('img/background-com-textura-branco.webp');
    background-size: cover;
    background-position: center;
    padding: 70px 0;
    text-align: center;
}

.cardapio__titulo {
    font-family: termina, sans-serif;
    font-weight: 700;
    color: #1a4500;
    font-size: clamp(1.2rem, 2.2vw, 1.75rem);
    margin-bottom: 44px;
}

.cardapio__produtos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.cardapio__produto {
    flex: 1 1 200px;
    max-width: 340px;
    width: 100%;
    height: auto;
    display: block;
}

.cardapio__disclaimer {
    font-size: 1rem;
    font-family: termina, sans-serif;
    color: #3a6e00;
    margin-bottom: 48px;
    font-weight: 500;
}

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

.cardapio__card {
    display: block;
    flex: 1 1 300px;
    max-width: 520px;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cardapio__card:hover {
    transform: scale(1.03);
}

.cardapio__card img {
    display: block;
    width: 100%;
    height: auto;
}

@media (max-width: 576px) {
    .cardapio__cards {
        flex-direction: column;
        align-items: center;
    }

    .cardapio__card {
        width: 90%;
        max-width: 400px;
        flex: none;
    }
}

/*H�spedes WAM  */
.hospedes {
    background-image: url('img/background-com-textura-branco.webp');
    background-size: cover;
    background-position: center;
    padding: 60px 0 70px;
}

.hospedes__img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto 44px;
}

.hospedes__texto {
    font-family: termina, sans-serif;
    font-weight: 400;
    font-size: clamp(1rem, 1.8vw, 1.25rem);
    color: #1a4500;
    line-height: 1.65;
    margin-bottom: 36px;
}

.hospedes__texto strong {
    font-weight: 700;
}

.btn-voucher {
    display: inline-block;
    background-color: #1a4500;
    color: #FFCA00;
    font-family: termina, sans-serif;
    font-weight: 700;
    font-size: 1.15rem;
    padding: 18px 64px;
    border-radius: 50px;
    text-decoration: none;
    transition: filter 0.2s ease;
}

.btn-voucher:hover {
    filter: brightness(1.2);
    color: #FFCA00;
}

/*FAQ  */
.faq {
    background-image: url('img/background-com-textura-branco.webp');
    background-size: cover;
    background-position: center;
    padding: 70px 0;
}

.faq__titulo {
    font-family: termina, sans-serif;
    font-weight: 700;
    color: #1a4500;
    font-size: 1.6rem;
    padding-left: 16px;
    border-left: 4px solid #1a4500;
    margin-bottom: 32px;
}

.faq .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid #c5d9bb;
    border-radius: 0 !important;
}

.faq .accordion-button {
    background: transparent;
    color: #748e62;
    font-family: termina, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 18px 0;
    box-shadow: none;
    gap: 12px;
    border-radius: 0 !important;
}

.faq .accordion-button:not(.collapsed) {
    background: transparent;
    color: #748e62;
    box-shadow: none;
}

.faq .accordion-button::after {
    display: none;
}

.faq-icon {
    margin-left: auto;
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #748e62;
    line-height: 1;
}

.faq-icon::before {
    content: '⊖';
}

.accordion-button.collapsed .faq-icon::before {
    content: '⊕';
}

.faq .accordion-body {
    font-family: termina, sans-serif;
    font-weight: 400;
    font-size: 0.95rem;
    color: #1a4500;
    line-height: 1.75;
    padding: 0 0 20px 0;
}

/*FAQ Rodap�  */
.faq__rodape {
    margin-top: 40px;
}

.faq__rodape-titulo {
    font-family: termina, sans-serif;
    font-weight: 400;
    color: #1a4500;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 16px;
}

.faq__rodape-titulo strong {
    font-weight: 700;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1a4500;
    color: #fff;
    font-family: termina, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    transition: filter 0.2s ease;
}

.btn-whatsapp i {
    font-size: 1.3rem;
}

.btn-whatsapp:hover {
    filter: brightness(1.2);
    color: #fff;
}

/*Rodap�  */
.rodape {
    background-image: url('img/background-com-textura-verde.webp');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 32px 24px;
    flex-wrap: wrap;
}

.rodape__logo {
    height: 64px;
    width: auto;
}

@media (max-width: 576px) {
    .rodape {
        gap: 32px;
        padding: 36px 24px;
    }

    .rodape__logo {
        height: 48px;
    }
}

#em-breve {
    font-family: termina, sans-serif;
    font-weight: 700;
    color: #000;
    font-size: 3rem;
}

/* Modal Voucher */
.voucher-modal {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.voucher-modal__header {
    background-color: #1a4500;
    padding: 28px 32px 24px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.voucher-modal__pretitulo {
    font-family: termina, sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 4px;
}

.voucher-modal__titulo {
    font-family: termina, sans-serif;
    font-weight: 700;
    font-size: 1.4rem;
    color: #FFCA00;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.2;
}

.voucher-modal__close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    margin-top: -4px;
    transition: color 0.2s ease;
}

.voucher-modal__close:hover {
    color: #fff;
}

.voucher-modal__body {
    padding: 32px;
    background: #fff;
}

.voucher-modal__subtitulo {
    font-family: termina, sans-serif;
    font-size: 0.875rem;
    color: #748e62;
    line-height: 1.6;
    margin-bottom: 28px;
}

.voucher-modal__campo {
    margin-bottom: 20px;
}

.voucher-modal__label {
    display: block;
    font-family: termina, sans-serif;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1a4500;
    margin-bottom: 8px;
}

.voucher-modal__select,
.voucher-modal__input {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #c5d9bb;
    border-radius: 12px;
    font-family: termina, sans-serif;
    font-size: 0.95rem;
    color: #1a4500;
    background-color: #f8fdf4;
    outline: none;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    -webkit-appearance: none;
    appearance: none;
}

.voucher-modal__select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231a4500' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 44px;
    cursor: pointer;
}

.voucher-modal__select:focus,
.voucher-modal__input:focus {
    border-color: #3CB800;
    background-color: #fff;
}

.voucher-modal__select.is-invalid,
.voucher-modal__input.is-invalid {
    border-color: #dc3545;
}

.voucher-modal__error {
    display: none;
    font-family: termina, sans-serif;
    font-size: 0.78rem;
    color: #dc3545;
    margin-top: 6px;
    font-weight: 500;
}

.voucher-modal__error.visible {
    display: block;
}

.voucher-modal__input::-webkit-inner-spin-button,
.voucher-modal__input::-webkit-outer-spin-button {
    opacity: 1;
}

.voucher-modal__input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.voucher-modal__btn {
    display: block;
    width: 100%;
    background-color: #FFCA00;
    color: #1a4500;
    font-family: termina, sans-serif;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 16px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    margin-top: 32px;
    transition: filter 0.2s ease, transform 0.1s ease;
}

.voucher-modal__btn:hover {
    filter: brightness(1.08);
    transform: scale(1.01);
}

.voucher-modal__btn:active {
    transform: scale(0.98);
}

@media (max-width: 576px) {
    .voucher-modal__header {
        padding: 22px 24px 18px;
    }

    .voucher-modal__body {
        padding: 24px;
    }
}