/* =============================================
   SHOWS DE FÉRIAS DE JULHO — WAM EXPERIENCE
   ============================================= */

:root {
    --verde-escuro: #1B3D26;
    --branco: #FFFFFF;
    --dourado: #F2B73C;
    --dourado-claro: #FBE29A;
}

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

@media (min-width: 1200px) {
    .secao-ingresso .container,
    .secao-dias .container,
    .secao-atracoes .container,
    .secao-faq .container {
        max-width: 1140px;
    }
}

body {
    margin: 0;
    background-color: var(--branco);
    font-family: 'acumin-pro', Arial, sans-serif;
}

/* =============================================
   BADGE (pílula verde usada nos títulos de seção)
   ============================================= */

.badge-pill {
    display: inline-block;
    background-color: var(--verde-escuro);
    color: var(--branco);
    font-family: termina, sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    margin-bottom: 100px;
}

/* =============================================
   SEÇÃO BANNER
   ============================================= */

.secao-banner {
    line-height: 0;
    max-width: 1400px;
    margin: 0 auto;
}

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

/* =============================================
   SEÇÃO INGRESSO
   ============================================= */

.secao-ingresso {
    padding: 4rem 1rem;
    text-align: center;
}

.ingresso-titulo {
    font-family: termina, sans-serif;
    font-weight: 800;
    font-size: 1.8rem;
    line-height: 1.25;
    color: var(--verde-escuro);
    max-width: 780px;
    margin: 2rem auto 1.5rem;
}

.ingresso-texto {
    font-family: termina, sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--verde-escuro);
    max-width: 720px;
    margin: 0 auto 2.5rem;
}

.ingresso-box {
    position: relative;
    display: inline-flex;
    align-items: center;
    text-align: left;
    background-color: var(--dourado);
    border-radius: 50px;
    padding: 1.2rem 2.5rem 1.2rem 5.5rem;
    max-width: 100%;
}

.ingresso-icone-circulo {
    position: absolute;
    left: -0.75rem;
    top: 50%;
    transform: translateY(-50%);
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background-color: var(--dourado-claro);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ingresso-icone {
    width: 42px;
    height: auto;
}

.ingresso-box-texto {
    font-family: termina, sans-serif;
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--verde-escuro);
}

.ingresso-box-texto strong {
    font-weight: 800;
}

@media (max-width: 575px) {
    .ingresso-titulo {
        font-size: 1.35rem;
    }

    .ingresso-texto {
        font-size: 0.85rem;
    }

    .ingresso-box {
        padding: 1.1rem 1.5rem 1.1rem 4.75rem;
    }

    .ingresso-icone-circulo {
        width: 78px;
        height: 78px;
    }
}

/* =============================================
   SEÇÃO DIAS / ARTISTAS
   ============================================= */

.secao-dias {
    padding: 1rem 1rem 4rem;
    text-align: center;
}

.dias-row {
    margin-top: 3.5rem;
}

.dia-col {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 2rem;
}

.dia-card-link {
    display: block;
    width: 100%;
    transform-origin: bottom center;
    transition: transform 0.25s ease, filter 0.25s ease;
}

.dia-card-link:hover,
.dia-card-link:focus-visible {
    transform: scale(1.04);
    filter: brightness(1.05) drop-shadow(0 10px 18px rgba(27, 61, 38, 0.35));
}

.dia-card-img {
    display: block;
    width: 100%;
    aspect-ratio: 868 / 1590;
    object-fit: contain;
    object-position: bottom center;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .dias-row {
        margin-top: 2.5rem;
    }

    .dia-col {
        margin-bottom: 1.5rem;
    }
}

/* =============================================
   SEÇÃO ATRAÇÕES
   ============================================= */

.secao-atracoes {
    padding: 1rem 1rem 4rem;
}

.atracoes-row {
    margin-bottom: 3.5rem;
}

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

.atracoes-fotos-col {
    margin-top: 2rem;
}

@media (min-width: 992px) {
    .atracoes-fotos-col {
        margin-top: 0;
    }
}

@media (max-width: 575px) {
    .secao-atracoes {
        padding-top: 2.5rem;
        padding-bottom: 3rem;
    }

    .atracoes-row {
        margin-bottom: 2.5rem;
    }
}

.beneficios-lista {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
    max-width: 1300px;
    margin: 0 auto;
}

.beneficio-item {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    background-color: var(--branco);
    border: 1.5px solid var(--verde-escuro);
    border-radius: 50px;
    padding: 1.1rem 1.85rem;
    font-family: termina, sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--verde-escuro);
}

.beneficio-check {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
}

@media (max-width: 575px) {
    .beneficio-item {
        font-size: 0.75rem;
        padding: 0.9rem 1.25rem;
    }
}

/* =============================================
   SEÇÃO FAQ
   ============================================= */

.secao-faq {
    padding: 1rem 1rem 4rem;
}

@media (max-width: 575px) {
    .secao-faq {
        padding-top: 2rem;
        padding-bottom: 3rem;
    }
}

.faq-card {
    border: 1.5px solid #1c1c1c;
    border-radius: 24px 110px 24px 24px;
    padding: 2.5rem;
    margin-bottom: 3.5rem;
}

.faq-titulo {
    font-family: termina, sans-serif;
    font-weight: 800;
    font-size: 2rem;
    color: var(--verde-escuro);
    margin-bottom: 1.75rem;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #f2f2f2;
    border-radius: 20px;
    overflow: hidden;
}

.faq-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    width: 100%;
    background-color: transparent !important;
    border: none;
    padding: 1.15rem 1.75rem;
    font-family: termina, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #1c1c1c !important;
    box-shadow: none !important;
    cursor: pointer;
}

.faq-btn::after {
    display: none;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 0.9rem;
    color: #1c1c1c;
    transition: transform 0.25s ease;
}

.faq-btn:not(.collapsed) .faq-icon {
    transform: rotate(180deg);
}

.faq-resposta {
    font-family: termina, sans-serif;
    font-size: 0.85rem;
    color: #444444;
    line-height: 1.6;
    padding: 0 1.75rem 1.4rem;
}

.faq-footer-info {
    margin-bottom: 2.5rem;
}

.faq-contato-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    font-family: termina, sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--verde-escuro);
    margin-bottom: 0.75rem;
}

.faq-contato-icone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--verde-escuro);
    color: var(--branco);
    font-size: 0.85rem;
    flex-shrink: 0;
}

.faq-logos {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-top: 1.5rem;
}

.faq-logo {
    height: 90px;
    width: auto;
}

.faq-legal {
    font-family: termina, sans-serif;
    font-size: 0.75rem;
    color: #666666;
    text-align: center;
    line-height: 1.7;
}

@media (max-width: 991px) {
    .faq-logos {
        justify-content: center;
    }

    .faq-contato {
        text-align: center;
    }

    .faq-contato-item {
        justify-content: center;
    }
}

@media (max-width: 575px) {
    .faq-card {
        padding: 1.75rem;
        border-radius: 20px 60px 20px 20px;
    }

    .faq-titulo {
        font-size: 1.5rem;
    }

    .faq-btn {
        font-size: 0.8rem;
        padding: 1rem 1.25rem;
    }

    .faq-resposta {
        padding: 0 1.25rem 1.25rem;
    }

    .faq-logo {
        height: 60px;
    }

    .faq-logos {
        gap: 1.5rem;
        margin-top: 1.25rem;
    }

    .faq-footer-info {
        margin-bottom: 2rem;
    }
}

.atracoes-lista-col {
    margin-bottom: 2rem;
}