/* ========================================================== */
/* CORES DO SITE                                              */
/* ========================================================== */

:root {
    --black: #090806;
    --black-soft: #15110d;
    --brown: #3a2117;
    --brown-light: #76513d;
    --green: #142e24;
    --green-light: #264f3e;
    --gold: #c49a55;
    --gold-light: #e7c987;
    --cream: #f1eadf;
    --white: #ffffff;
    --text-dark: #231c17;
    --text-light: #eee8df;
    --border-light: rgba(255, 255, 255, 0.16);
    --border-dark: rgba(35, 28, 23, 0.16);
    --header-height: 84px;
    --container: 1240px;
}

:root{

    --title-font: "Oswald", sans-serif;

}

/* ========================================================== */
/* RESET                                                      */
/* ========================================================== */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--text-light);
    font-family: "Montserrat", sans-serif;
    overflow-x: hidden;
}

body.is-video-open {
    overflow: hidden;
}

img,
video {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
    font: inherit;
}

p {
    line-height: 1.8;
}


/* ========================================================== */
/* ELEMENTOS GERAIS                                           */
/* ========================================================== */

.section {
    padding: 130px max(24px, calc((100vw - var(--container)) / 2));
}

.eyebrow {
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.eyebrow--dark {
    color: var(--green);
}

.section-title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3.4rem, 7vw, 7rem);
    font-weight: 400;
    letter-spacing: 0.02em;
    line-height: 0.9;
    margin-bottom: 32px;
    text-transform: uppercase;
}

.section-title--dark {
    color: var(--text-dark);
}

.lead-text {
    color: var(--text-dark);
    font-size: clamp(1.1rem, 1.6vw, 1.4rem);
    font-weight: 500;
    line-height: 1.6;
}

.lead-text--light {
    color: var(--white);
}

.button {
    align-items: center;
    background: var(--gold);
    border: 1px solid var(--gold);
    color: var(--black);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.12em;
    min-height: 58px;
    padding: 0 30px;
    text-transform: uppercase;
    transition:
        background 250ms ease,
        color 250ms ease,
        transform 250ms ease;
}

.button:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
}

.button--small {
    min-height: 46px;
    padding: 0 20px;
}

.button--dark {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.button--dark:hover {
    background: var(--green-light);
}

.reveal {
    opacity: 0;
    transform: translateY(45px);
    transition:
        opacity 850ms ease,
        transform 850ms ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* ========================================================== */
/* MENU                                                       */
/* ========================================================== */

.header {
    align-items: center;
    display: flex;
    height: var(--header-height);
    justify-content: space-between;
    left: 0;
    padding: 0 max(24px, calc((100vw - var(--container)) / 2));
    position: fixed;
    right: 0;
    top: 0;
    transition:
        background 250ms ease,
        height 250ms ease;
    z-index: 100;
}

.header.is-scrolled {
    background: rgba(9, 8, 6, 0.97);
    height: 68px;
}

.header__logo {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.1em;
    position: relative;
    z-index: 102;
}

.navigation {
    align-items: center;
    display: flex;
    gap: 26px;
}

.navigation > a:not(.button) {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

.menu-button {
    background: transparent;
    border: 0;
    cursor: pointer;
    display: none;
    position: relative;
    width: 32px;
    z-index: 102;
}

.menu-button span {
    background: var(--white);
    display: block;
    height: 2px;
    margin: 6px 0;
    transition: 250ms ease;
    width: 100%;
}


/* ========================================================== */
/* HERO                                                       */
/* ========================================================== */

.hero {
    background: var(--black);
    min-height: 100svh;
    overflow: hidden;
    position: relative;
}

.hero__poster {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center;
    position: absolute;
    width: 100%;
}

.hero__shade {
    background:
        linear-gradient(
            90deg,
            rgba(6, 5, 4, 0.98) 0%,
            rgba(6, 5, 4, 0.92) 35%,
            rgba(6, 5, 4, 0.56) 64%,
            rgba(6, 5, 4, 0.15) 100%
        );
    inset: 0;
    position: absolute;
}

.hero__shade::after {
    background: linear-gradient(
        90deg,
        rgba(9, 8, 6, 0.14),
        transparent
    );
    content: "";
    inset: 0 35% 0 0;
    position: absolute;
}

.hero__content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100svh;
    padding:
        calc(var(--header-height) + 45px)
        35%
        70px
        max(16px, calc((100vw - var(--container)) / 2 - 34px));
    position: relative;
    transition:
        opacity 500ms ease,
        transform 500ms ease;
    z-index: 3;
}

.hero.is-playing .hero__content {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-70px);
}

.hero__title {
    color: var(--white);
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(5rem, 11vw, 10.5rem);
    font-weight: 400;
    letter-spacing: 0.035em;
    line-height: 0.76;
    text-shadow: 0 8px 30px rgba(0, 0, 0, 0.65);
    text-transform: uppercase;
}

.hero__title span {
    display: block;
}

.hero__title span:last-child {
    font-size: 0.63em;
    margin-top: 0.18em;
}

.hero__description {
    font-size: clamp(1rem, 1.6vw, 1.35rem);
    margin-top: 34px;
    max-width: 620px;
}

.event-summary {
    border-bottom: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
    display: flex;
    margin-top: 38px;
    max-width: 700px;
    width: 100%;
}

.event-summary div {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 5px;
    padding: 17px 20px;
}

.event-summary div + div {
    border-left: 1px solid var(--border-light);
}

.event-summary strong {
    font-size: 0.88rem;
    text-transform: uppercase;
}

.event-summary span {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.7rem;
}

.hero__actions {
    align-items: center;
    display: flex;
    gap: 30px;
    margin-top: 38px;
}

.text-button {
    align-items: center;
    background: transparent;
    border: 0;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 700;
    gap: 13px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.text-button__play {
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    display: flex;
    height: 42px;
    justify-content: center;
    padding-left: 3px;
    width: 42px;
}

.hero__play {
    align-items: center;
    background: rgba(24, 20, 17, 0.68);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    height: 100px;
    justify-content: center;
    position: absolute;
    right: 14%;
    top: 50%;
    transform: translate(50%, -50%);
    transition:
        background 250ms ease,
        opacity 350ms ease,
        transform 250ms ease;
    width: 100px;
    z-index: 4;
}

.hero__play:hover {
    background: rgba(196, 154, 85, 0.7);
    transform: translate(50%, -50%) scale(1.08);
}

.hero__play span {
    border-bottom: 14px solid transparent;
    border-left: 23px solid var(--white);
    border-top: 14px solid transparent;
    margin-left: 7px;
}

.hero.is-playing .hero__play {
    opacity: 0;
    pointer-events: none;
}

.hero__video-layer {
    background: var(--black);
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: scale(1.04);
    transition:
        opacity 500ms ease,
        transform 600ms ease;
    z-index: 20;
}

.hero.is-playing .hero__video-layer {
    inset: 0;
    opacity: 1;
    pointer-events: auto;
    position: fixed;
    transform: scale(1);
    z-index: 500;
}

.hero__video {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.video-close {
    align-items: center;
    background: rgba(0, 0, 0, 0.58);
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    font-size: 2rem;
    height: 52px;
    justify-content: center;
    position: absolute;
    right: 30px;
    top: 28px;
    touch-action: manipulation;
    width: 52px;
    z-index: 520;
}

.scroll-indicator {
    align-items: center;
    bottom: 28px;
    display: flex;
    font-size: 0.62rem;
    gap: 15px;
    left: max(24px, calc((100vw - var(--container)) / 2));
    letter-spacing: 0.15em;
    position: absolute;
    text-transform: uppercase;
    z-index: 4;
}

.scroll-indicator__line {
    background: var(--white);
    height: 1px;
    width: 65px;
}


/* ========================================================== */
/* SINOPSE                                                    */
/* ========================================================== */

.synopsis {
    align-items: stretch;
    background: var(--cream);
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
    min-height: 820px;
    padding: 0;
}

.synopsis__images {
    background: #17100d;
    min-height: 760px;
    overflow: hidden;
    position: relative;
}

.synopsis__image {
    height: 100%;
    inset: 0;
    object-fit: contain;
    object-position: center center;
    opacity: 0;
    position: absolute;
    transition: opacity 1.15s ease;
    width: 100%;
}

.synopsis__image.is-active {
    opacity: 1;
}

.synopsis__image-blend {
    background: linear-gradient(
        90deg,
        transparent 55%,
        rgba(241, 234, 223, 0.6) 76%,
        var(--cream) 100%
    );
    inset: 0;
    position: absolute;
}

.synopsis__content {
    align-self: center;
    color: var(--text-dark);
    max-width: 650px;
    padding: 100px 9vw 100px 40px;
}

.synopsis__content p + p {
    margin-top: 22px;
}





/* ========================================================== */
/* LOCAL                                                      */
/* ========================================================== */

.venue {
    align-items: center;
    background: var(--cream);
    color: var(--text-dark);
    display: grid;
    gap: 80px;
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
}

.venue__content {
    max-width: 580px;
}

.venue__details {
    border-bottom: 1px solid var(--border-dark);
    margin: 38px 0;
}

.venue__details div {
    border-top: 1px solid var(--border-dark);
    display: grid;
    gap: 20px;
    grid-template-columns: 130px 1fr;
    padding: 22px 0;
}

.venue__details span {
    color: var(--brown-light);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.venue__details strong {
    font-size: 0.9rem;
    line-height: 1.6;
}

.venue__image {
    min-height: 610px;
    overflow: hidden;
}

.venue__image img {
    height: 100%;
    min-height: 610px;
    object-fit: cover;
    transition: transform 800ms ease;
    width: 100%;
}

.venue__image:hover img {
    transform: scale(1.035);
}


/* ========================================================== */
/* GRUPO E ELENCO                                              */
/* ========================================================== */

.group-section {
    background: var(--green);
}

.group-introduction {
    align-items: center;
    display:grid;
    gap: 85px;
    grid-template-columns: minmax(420px, 1fr) minmax(0, 0.9fr);
}

.group-introduction__image {
    min-height: 650px;
    overflow: hidden;
}

.group-introduction__image img {
    height: 100%;
    min-height: 650px;
    object-fit:cover;
    width: 100%;
}

.group-introduction__content p + p {
    margin-top: 22px;
}

.cast {
    margin-top: 120px;
}

.cast__heading {
    align-items: flex-end;
    display: flex;
    justify-content: space-between;
    margin-bottom: 36px;
}

.cast__heading h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.2rem, 4vw, 4rem);
    font-weight: 400;
}

.cast__buttons {
    display: flex;
    gap: 10px;
}

.cast__buttons button {
    align-items: center;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.4);
    cursor: pointer;
    display: flex;
    font-size: 1.3rem;
    height: 52px;
    justify-content: center;
    width: 52px;
}

.cast__viewport {
    overflow: hidden;
}

.cast__track {
    display: flex;
    gap: 20px;
    transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.cast-card {
    background: rgba(255, 255, 255, 0.07);
    flex: 0 0 calc((100% - 60px) / 4);
    min-width: 0;
}

.cast-card img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    width: 100%;
}

.cast-card div {
    padding: 23px;
}

.cast-card span {
    color: var(--gold-light);
    font-size: 0.66rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.cast-card h4 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.7rem;
    font-weight: 400;
    margin-top: 7px;
}


/* ========================================================== */
/* PROJETOS                                                   */
/* ========================================================== */

.projects {
    background: var(--cream);
    color: var(--text-dark);
}

.projects__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, 1fr);
}

.project-card {
    border: 1px solid var(--border-dark);
    min-height: 330px;
    padding: 36px;
    transition:
        background 300ms ease,
        color 300ms ease,
        transform 300ms ease;
}

.project-card:hover {
    background: var(--green);
    color: var(--white);
    transform: translateY(-8px);
}

.project-card > span {
    color: var(--brown-light);
    display: block;
    font-family: "Bebas Neue", sans-serif;
    font-size: 2rem;
    margin-bottom: 65px;
}

.project-card h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 20px;
}

.project-card p {
    font-size: 0.88rem;
}


/* ========================================================== */
/* CHAMADA FINAL                                              */
/* ========================================================== */

.final-call {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 760px;
    overflow: hidden;
    padding: 100px 24px;
    position: relative;
    text-align: center;
}

.final-call > img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
}

.final-call__shade {
    background: rgba(6, 5, 4, 0.74);
    inset: 0;
    position: absolute;
}

.final-call__content {
    max-width: 820px;
    position: relative;
}

.final-call h2 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(4rem, 9vw, 8.5rem);
    font-weight: 400;
    line-height: 0.9;
    text-transform: uppercase;
}

.final-call p:not(.eyebrow) {
    font-size: clamp(1rem, 1.6vw, 1.3rem);
    margin: 28px auto 36px;
    max-width: 680px;
}


/* ========================================================== */
/* RODAPÉ                                                     */
/* ========================================================== */

.footer {
    align-items: center;
    background: var(--black);
    color: rgba(255, 255, 255, 0.58);
    display: flex;
    font-size: 0.72rem;
    justify-content: space-between;
    padding: 35px max(24px, calc((100vw - var(--container)) / 2));
}

.mobile-ticket-button {
    display: none;
}


/* ========================================================== */
/* TABLET                                                     */
/* ========================================================== */

@media (max-width: 1050px) {
    .navigation {
        gap: 15px;
    }

    .navigation > a:not(.button) {
        display: none;
    }

    .hero__content {
        padding-right: 32%;
    }

    .synopsis {
        grid-template-columns: 1fr 1fr;
    }

    .synopsis__content {
        padding-right: 50px;
    }

    .venue,
    .group-introduction {
        gap: 45px;
        grid-template-columns: 1fr 1fr;
    }

    .cast-card {
        flex-basis: calc((100% - 40px) / 3);
    }
}


/* ========================================================== */
/* CELULAR                                                    */
/* ========================================================== */

@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    body {
        padding-bottom: 66px;
    }

    .section {
        padding: 90px 22px;
    }

    .header {
        padding: 0 20px;
    }

    .header__logo {
        font-size: 1rem;
        max-width: 190px;
    }

    .menu-button {
        display: block;
    }

    .menu-button.is-open span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-button.is-open span:nth-child(2) {
        opacity: 0;
    }

    .menu-button.is-open span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .navigation {
        align-items: flex-start;
        background: rgba(9, 8, 6, 0.98);
        flex-direction: column;
        gap: 24px;
        inset: 0;
        justify-content: center;
        opacity: 0;
        padding: 90px 28px;
        pointer-events: none;
        position: fixed;
        transform: translateY(-20px);
        transition: 300ms ease;
    }

    .navigation.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .navigation > a:not(.button) {
        display: block;
        font-family: "Bebas Neue", sans-serif;
        font-size: 2.6rem;
        font-weight: 400;
    }

    .navigation .button {
        margin-top: 15px;
        width: 100%;
    }

    .hero {
        min-height: 100svh;
    }

    .hero__poster {
        object-position: 63% center;
    }

    .hero__shade {
        background: linear-gradient(
            180deg,
            rgba(6, 5, 4, 0.54) 0%,
            rgba(6, 5, 4, 0.74) 40%,
            rgba(6, 5, 4, 0.97) 75%,
            rgba(6, 5, 4, 1) 100%
        );
    }

    .hero__shade::after {
        display: none;
    }

    .hero__content {
        justify-content: flex-end;
        min-height: 100svh;
        padding: 100px 22px 95px;
    }

    .hero__title {
        font-size: clamp(4.5rem, 22vw, 7rem);
        line-height: 0.79;
    }

    .hero__description {
        font-size: 0.95rem;
        margin-top: 24px;
        max-width: 330px;
    }

    .event-summary {
        display: grid;
        grid-template-columns: 1fr 1fr;
        margin-top: 25px;
    }

    .event-summary div {
        padding: 13px 10px;
    }

    .event-summary div + div {
        border-left: 1px solid var(--border-light);
    }

    .event-summary div:last-child {
        border-left: 0;
        border-top: 1px solid var(--border-light);
        grid-column: 1 / -1;
    }

    .hero__actions {
        align-items: stretch;
        flex-direction: column;
        gap: 15px;
        margin-top: 25px;
        width: 100%;
    }

    .hero__actions .button {
        width: 100%;
    }

    .text-button {
        justify-content: center;
    }

    .hero__play {
        height: 72px;
        right: 22px;
        top: 24%;
        transform: none;
        width: 72px;
    }

    .hero__play:hover {
        transform: scale(1.06);
    }

    .hero__play span {
        border-bottom-width: 10px;
        border-left-width: 17px;
        border-top-width: 10px;
    }

    .video-close {
        height: 46px;
        right: 15px;
        top: 15px;
        width: 46px;
    }

    .scroll-indicator {
        display: none;
    }

    .synopsis {
        display: block;
        min-height: 0;
    }

    .synopsis__images {
        min-height: 540px;
    }

    .synopsis__image-blend {
        background: linear-gradient(
            180deg,
            transparent 60%,
            var(--cream) 100%
        );
    }

    .synopsis__content {
        margin-top: -35px;
        padding: 30px 22px 90px;
        position: relative;
        z-index: 2;
    }

    .gallery-grid {
        display: flex;
        flex-direction: column;
    }

    .gallery-card,
    .gallery-card--large,
    .gallery-card--tall,
    .gallery-card--wide,
    .gallery-video {
        height: 430px;
        width: 100%;
    }

    .gallery-card--wide,
    .gallery-video {
        height: 310px;
    }

    .venue,
    .group-introduction {
        display: flex;
        flex-direction: column;
        gap: 55px;
    }

    .venue__image,
    .venue__image img,
    .group-introduction__image,
    .group-introduction__image img {
        min-height: 430px;
    }

    .venue__details div {
        gap: 10px;
        grid-template-columns: 1fr;
    }

    .group-introduction__image {
        order: 2;
    }

    .cast {
        margin-top: 80px;
    }

    .cast__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 25px;
    }

    .cast-card {
        flex-basis: 82%;
    }

    .projects__grid {
        grid-template-columns: 1fr;
    }

    .project-card {
        min-height: 280px;
    }

    .project-card > span {
        margin-bottom: 40px;
    }

    .final-call {
        min-height: 650px;
    }

    .footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .mobile-ticket-button {
        align-items: center;
        background: var(--gold);
        bottom: 0;
        color: var(--black);
        display: flex;
        font-size: 0.75rem;
        font-weight: 800;
        height: 66px;
        justify-content: center;
        left: 0;
        letter-spacing: 0.1em;
        position: fixed;
        right: 0;
        text-transform: uppercase;
        z-index: 90;
    }
}


/* ========================================================== */
/* REDUÇÃO DE MOVIMENTO                                       */
/* ========================================================== */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================================== */
/* AJUSTES DE FOCO DO HERO E MESCLAGEM DA SINOPSE             */
/* ========================================================== */

/*
    A imagem desfocada fica como base. A cópia nítida aparece
    gradualmente do centro para a direita por meio de uma máscara.
    Isso evita um corte duro entre as duas áreas.
*/
.hero__poster--blurred {
    filter: blur(7px) saturate(0.92) brightness(0.82);
    transform: scale(1.025);
}

.hero__poster--focused {
    filter: saturate(1.05) brightness(0.94);
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        transparent 43%,
        rgba(0, 0, 0, 0.12) 49%,
        rgba(0, 0, 0, 0.5) 57%,
        #000 68%,
        #000 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        transparent 43%,
        rgba(0, 0, 0, 0.12) 49%,
        rgba(0, 0, 0, 0.5) 57%,
        #000 68%,
        #000 100%
    );
}

/*
    A segunda seção passa a funcionar como uma composição única:
    fotografia ampla à esquerda e fundo claro entrando sobre ela.
*/
.synopsis {
    grid-template-columns: minmax(0, 55%) minmax(420px, 45%);
    min-height: 790px;
    overflow: hidden;
}

.synopsis__images {
    background: var(--cream);
    min-height: 790px;
    overflow: visible;
    z-index: 1;
}

.synopsis__image {
    height: 100%;
    object-fit: cover;
    object-position: center 22%;
    transform: none;
    width: 112%;
}

.synopsis__image.is-active {
    transform: none;
}

.synopsis__image-blend {
    background:
        linear-gradient(
            90deg,
            transparent 0%,
            transparent 52%,
            rgba(241, 234, 223, 0.06) 61%,
            rgba(241, 234, 223, 0.30) 71%,
            rgba(241, 234, 223, 0.72) 82%,
            rgba(241, 234, 223, 0.96) 94%,
            var(--cream) 100%
        ),
        linear-gradient(
            0deg,
            rgba(241, 234, 223, 0.16) 0%,
            transparent 18%,
            transparent 82%,
            rgba(241, 234, 223, 0.08) 100%
        );
    inset: 0 -12% 0 0;
    pointer-events: none;
}

.synopsis__content {
    background: var(--cream);
    margin-left: -1px;
    padding-left: 34px;
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {

    /* ============================
            HERO MOBILE
    ============================ */

    .hero__play {
        display: none !important;
    }
    
    .hero__poster--blurred {
        filter: blur(4px) saturate(0.94) brightness(0.78);
        transform: scale(1.015);
    }

    .hero__poster--focused {
        -webkit-mask-image: linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.18) 28%,
            rgba(0, 0, 0, 0.78) 48%,
            #000 64%,
            #000 100%
        );
        mask-image: linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.18) 28%,
            rgba(0, 0, 0, 0.78) 48%,
            #000 64%,
            #000 100%
        );
    }

    .synopsis {
        display: block;
        min-height: auto;
    }

    .synopsis__images {
        min-height: min(78vh, 700px);
        overflow: hidden;
    }

    .synopsis__image {
        object-position: center 18%;
        width: 100%;
    }

    .synopsis__image-blend {
        background: linear-gradient(
            180deg,
            transparent 0%,
            transparent 62%,
            rgba(241, 234, 223, 0.20) 72%,
            rgba(241, 234, 223, 0.72) 86%,
            var(--cream) 100%
        );
        inset: 0;
    }

    .synopsis__content {
        margin-top: -72px;
        padding-left: 24px;
        position: relative;
    }
}

@media (max-width: 560px) {
    .synopsis__images {
        min-height: 560px;
    }

    .synopsis__image {
        object-position: 52% 15%;
    }

    .synopsis__content {
        margin-top: -50px;
    }
}

/* ========================================================== */
/* AJUSTE REFINADO — SEÇÕES 1 E 2                             */
/* ========================================================== */

:root {
    --accent: #8f2333;
}

.eyebrow--accent {
    color: var(--accent);
}

/* ------------------------------ */
/* Seção 1                        */
/* ------------------------------ */

.hero {
    min-height: 100svh;
}

.hero__poster--blurred {
    filter: blur(8px) saturate(0.9) brightness(0.62);
    transform: scale(1.03);
}

.hero__poster--focused {
    filter: saturate(1.02) brightness(0.92);
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent 0%,
        transparent 45%,
        rgba(0, 0, 0, 0.08) 51%,
        rgba(0, 0, 0, 0.28) 56%,
        rgba(0, 0, 0, 0.72) 64%,
        #000 74%,
        #000 100%
    );
    mask-image: linear-gradient(
        90deg,
        transparent 0%,
        transparent 45%,
        rgba(0, 0, 0, 0.08) 51%,
        rgba(0, 0, 0, 0.28) 56%,
        rgba(0, 0, 0, 0.72) 64%,
        #000 74%,
        #000 100%
    );
}

.hero__shade {
    background: linear-gradient(
        90deg,
        rgba(6, 5, 4, 0.99) 0%,
        rgba(6, 5, 4, 0.97) 28%,
        rgba(6, 5, 4, 0.86) 46%,
        rgba(6, 5, 4, 0.56) 63%,
        rgba(6, 5, 4, 0.15) 100%
    );
}

.hero__shade::after {
    background: linear-gradient(
        90deg,
        rgba(10, 25, 31, 0.04) 0%,
        rgba(14, 55, 67, 0.18) 34%,
        rgba(18, 87, 108, 0.33) 58%,
        rgba(5, 20, 25, 0.02) 100%
    );
    filter: blur(28px);
    inset: 0 24% 0 46%;
}

.hero__content {
    padding:
        calc(var(--header-height) + 42px)
        41%
        70px
        max(24px, calc((100vw - var(--container)) / 2));
}

.hero__title {
    font-size: clamp(4.8rem, 10vw, 10rem);
    letter-spacing: 0.012em;
    line-height: 0.77;
}

.hero__description {
    font-size: clamp(1rem, 1.45vw, 1.24rem);
    margin-top: 30px;
    max-width: 600px;
}

.event-summary {
    max-width: 660px;
}

.hero__play {
    background: rgba(22, 33, 40, 0.28);
    border: 1.5px solid rgba(255, 255, 255, 0.62);
    height: 118px;
    right: 14%;
    top: 50%;
    width: 118px;
}

.hero__play::after {
    color: var(--gold-light);
    content: "ASSISTIR AO TRAILER";
    font-size: 0.78rem;
    font-weight: 700;
    left: 50%;
    letter-spacing: 0.18em;
    position: absolute;
    text-transform: uppercase;
    top: calc(100% + 22px);
    transform: translateX(-50%);
    white-space: nowrap;
}

.hero__play span {
    border-bottom-width: 16px;
    border-left-width: 25px;
    border-top-width: 16px;
    margin-left: 8px;
}

/* ------------------------------ */
/* Seção 2                        */
/* ------------------------------ */

.synopsis {
    align-items: stretch;
    background: var(--cream);
    display: grid;
    grid-template-columns: minmax(0, 50.5%) minmax(0, 49.5%);
    min-height: 600px;
    overflow: hidden;
    padding: 0;
}

.synopsis__images {
    background: #1a110e;
    min-height: 600px;
    overflow: hidden;
    position: relative;
}

.synopsis__image {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: 43% 18%;
    opacity: 0;
    position: absolute;
    transition: opacity 1.15s ease;
    width: 100%;
}

.synopsis__image.is-active {
    opacity: 1;
}

.synopsis__image-blend {
    background: linear-gradient(
        90deg,
        rgba(241, 234, 223, 0) 38%,
        rgba(241, 234, 223, 0.05) 48%,
        rgba(241, 234, 223, 0.18) 58%,
        rgba(241, 234, 223, 0.42) 68%,
        rgba(241, 234, 223, 0.78) 81%,
        rgba(241, 234, 223, 0.96) 92%,
        var(--cream) 100%
    );
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.synopsis__content {
    align-self: center;
    color: var(--text-dark);
    max-width: 760px;
    padding: 72px 7vw 72px 56px;
}

.synopsis__title {
    color: #151515;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.6rem, 5.6vw, 5.8rem);
    font-weight: 600;
    letter-spacing: -0.045em;
    line-height: 0.91;
    margin-bottom: 24px;
    max-width: 10.5ch;
}

.synopsis__lead,
.synopsis__content p {
    color: rgba(35, 28, 23, 0.84);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 640px;
}

.synopsis__lead {
    margin-bottom: 18px;
}

.synopsis__lead strong {
    color: #171311;
}

.synopsis__content p + p {
    margin-top: 16px;
}

.synopsis__button {
    align-items: center;
    border: 1px solid rgba(143, 35, 51, 0.45);
    color: var(--accent);
    display: inline-flex;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-top: 30px;
    min-height: 54px;
    padding: 0 20px;
    text-transform: uppercase;
    transition:
        background 250ms ease,
        border-color 250ms ease,
        color 250ms ease;
}

.synopsis__button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--white);
}

@media (max-width: 1100px) {
    .hero__content {
        padding-right: 39%;
    }

    .synopsis__content {
        padding: 64px 48px 64px 42px;
    }
}

@media (max-width: 900px) {
    .hero__poster--blurred {
        filter: blur(4px) saturate(0.92) brightness(0.62);
        transform: scale(1.02);
    }

    .hero__poster--focused {
        -webkit-mask-image: linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.18) 28%,
            rgba(0, 0, 0, 0.52) 42%,
            rgba(0, 0, 0, 0.82) 58%,
            #000 72%,
            #000 100%
        );
        mask-image: linear-gradient(
            180deg,
            transparent 0%,
            rgba(0, 0, 0, 0.18) 28%,
            rgba(0, 0, 0, 0.52) 42%,
            rgba(0, 0, 0, 0.82) 58%,
            #000 72%,
            #000 100%
        );
    }

    .hero__shade::after {
        inset: 48% 0 0 0;
    }

    .hero__content {
        padding: calc(var(--header-height) + 54px) 24px 132px;
    }

    .hero__play {
        bottom: 118px;
        height: 94px;
        right: 50%;
        top: auto;
        transform: translate(50%, 0);
        width: 94px;
    }

    .hero__play::after {
        font-size: 0.68rem;
        top: calc(100% + 16px);
    }

    .hero__play:hover {
        transform: translate(50%, 0) scale(1.08);
    }

    .synopsis {
        display: block;
        min-height: auto;
    }

    .synopsis__images {
        min-height: 520px;
    }

    .synopsis__image {
        object-position: 50% 14%;
    }

    .synopsis__image-blend {
        background: linear-gradient(
            180deg,
            rgba(241, 234, 223, 0) 50%,
            rgba(241, 234, 223, 0.20) 66%,
            rgba(241, 234, 223, 0.72) 84%,
            var(--cream) 100%
        );
    }

    .synopsis__content {
        margin-top: -44px;
        padding: 0 24px 76px;
        position: relative;
    }

    .synopsis__title {
        font-size: clamp(3rem, 12vw, 4.4rem);
        max-width: 11ch;
    }

    .synopsis__lead,
    .synopsis__content p {
        font-size: 1rem;
    }
}

@media (max-width: 560px) {
    .hero__title {
        font-size: clamp(3.9rem, 18vw, 5.6rem);
    }

    .hero__play {
        bottom: 112px;
        height: 82px;
        width: 82px;
    }

    .synopsis__images {
        min-height: 470px;
    }

    .synopsis__content {
        margin-top: -34px;
    }
}

/* ========================================================== */
/* V8 — SEÇÃO 2 TRANSPLANTADA DA V2 E HERO NO CANTO          */
/* ========================================================== */

/* O conteúdo da primeira seção começa no mesmo recuo visual
   da referência, sem ficar preso perto do centro. */
.hero__content {
    max-width: none;
    padding-left: 5vw;
    padding-right: 35%;
    width: 65%;
}

.scroll-indicator {
    left: 5vw;
}

/* A seção abaixo reproduz a estrutura e as medidas da V2. */
.synopsis {
    background: #eee9df;
    color: #191917;
    display: grid;
    grid-template-columns: 52% 48%;
    min-height: 820px;
    overflow: hidden;
    padding: 0;
}

.synopsis-gallery {
    min-height: 760px;
    position: relative;
}

.synopsis-gallery::after {
    background: linear-gradient(
        90deg,
        transparent 58%,
        #eee9df 100%
    );
    content: "";
    inset: 0;
    position: absolute;
    z-index: 2;
}

.synopsis-gallery img {
    height: 100%;
    inset: 0;
    object-fit: cover;
    object-position: center 25%;
    opacity: 0;
    position: absolute;
    transition: opacity 1.5s ease;
    width: 100%;
}

.synopsis-gallery img.active {
    opacity: 1;
}

.synopsis-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 110px 7vw 100px 3vw;
}

.synopsis-copy .kicker {
    color: #7f1d3e;
    font-family: "DM Sans", sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    margin: 0 0 18px;
    text-transform: uppercase;
}

.synopsis-copy h2 {
    color: #191917;
    font-family: "Playfair Display", serif;
    font-size: clamp(2.6rem, 5vw, 5.4rem);
    font-weight: 600;
    line-height: 1.05;
    margin: 0;
}

.synopsis-copy p {
    color: #555149;
    font-family: "DM Sans", sans-serif;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 1em;
}

.synopsis-copy p strong {
    color: #191917;
}

@media (max-width: 900px) {
    .hero__content {
        padding-left: 24px;
        padding-right: 24px;
        width: 100%;
    }

    .scroll-indicator {
        left: 24px;
    }

    .synopsis {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .synopsis-gallery {
        min-height: 620px;
    }

    .synopsis-gallery::after {
        background: linear-gradient(
            0deg,
            #eee9df,
            transparent 35%
        );
    }

    .synopsis-copy {
        padding: 20px 24px 80px;
    }
}

@media (max-width: 560px) {
    .synopsis-gallery {
        min-height: 500px;
    }
}

/* ========================================================== */
/* V9 — NOVAS FOTOS DA SINOPSE E HERO COM MAIS IMPACTO       */
/* ========================================================== */

/* Mantém a transição original da V2 e altera somente o
   enquadramento individual das novas fotografias. */
.synopsis-gallery .synopsis-photo--second {
    object-position: 66% 25%;
}

.synopsis-gallery .synopsis-photo--third {
    object-position: 64% 25%;
}

/* Mais presença visual para o conteúdo principal, sem mudar
   a posição geral, o vídeo ou a estrutura da primeira seção. */
.hero__content > .eyebrow {
    align-items: center;
    display: flex;
    gap: 14px;
    margin-bottom: 24px;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.7);
}

.hero__content > .eyebrow::before {
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    content: "";
    flex: 0 0 46px;
    height: 2px;
}

.hero__title {
    filter: drop-shadow(0 15px 24px rgba(0, 0, 0, 0.55));
    isolation: isolate;
    position: relative;
}

.hero__title::after {
    background: linear-gradient(
        90deg,
        rgba(196, 154, 85, 0.9),
        rgba(231, 201, 135, 0.22),
        transparent
    );
    bottom: -18px;
    content: "";
    height: 3px;
    left: 0;
    position: absolute;
    width: min(320px, 72%);
    z-index: -1;
}

.hero__title span:first-child {
    color: #ffffff;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.22),
        0 10px 35px rgba(0, 0, 0, 0.85);
}

.hero__title span:last-child {
    color: #f5efe5;
    letter-spacing: 0.055em;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.18),
        0 10px 34px rgba(0, 0, 0, 0.9);
}

.hero__description {
    border-left: 2px solid var(--gold);
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 42px;
    padding: 4px 0 4px 18px;
    text-shadow: 0 3px 16px rgba(0, 0, 0, 0.72);
}

.event-summary {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.045),
        rgba(255, 255, 255, 0.012)
    );
    border-color: rgba(231, 201, 135, 0.26);
    box-shadow: inset 0 1px rgba(255, 255, 255, 0.025);
}

.event-summary strong {
    color: var(--white);
}

.event-summary span {
    color: rgba(255, 255, 255, 0.68);
}

.hero__actions .button {
    box-shadow: 0 14px 34px rgba(196, 154, 85, 0.19);
}

@media (max-width: 900px) {
    .synopsis-gallery .synopsis-photo--second {
        object-position: 69% 25%;
    }

    .synopsis-gallery .synopsis-photo--third {
        object-position: 67% 25%;
    }

    .hero__title::after {
        bottom: -13px;
        width: min(250px, 70%);
    }

    .hero__description {
        margin-top: 34px;
    }
}

@media (max-width: 560px) {
    .synopsis-gallery .synopsis-photo--second {
        object-position: 72% 25%;
    }

    .synopsis-gallery .synopsis-photo--third {
        object-position: 70% 25%;
    }

    .hero__content > .eyebrow::before {
        flex-basis: 30px;
    }
}

/* ========================================================== */
/* V10 — AJUSTE DO TÍTULO PRINCIPAL E MARCA DO MENU          */
/* ========================================================== */

/* O bloco continua ocupando 65% da largura, mas sem perder
   espaço interno por causa de um padding direito excessivo. */
.hero__content {
    padding-left: 5vw;
    padding-right: 4vw;
    width: 65%;
}

/* Reduz levemente a palavra UMBANDA e aumenta NOSSA NATUREZA,
   mantendo as duas linhas com presença visual semelhante. */
.hero__title {
    font-size: clamp(4.8rem, 9vw, 9rem);
    line-height: 0.82;
    max-width: 100%;
}

.hero__title span:first-child,
.hero__title span:last-child {
    color: #ffffff;
}

.hero__title span:last-child {
    font-size: 0.76em;
    letter-spacing: 0.025em;
    line-height: 0.9;
    margin-top: 0.16em;
    white-space: nowrap;
}

.header__logo {
    color: #ffffff;
}

@media (max-width: 1100px) {
    .hero__content {
        padding-right: 3vw;
        width: 68%;
    }

    .hero__title {
        font-size: clamp(4.5rem, 8.7vw, 7.8rem);
    }
}

@media (max-width: 900px) {
    .hero__content {
        padding-left: 24px;
        padding-right: 24px;
        width: 100%;
    }

    .hero__title span:last-child {
        font-size: 0.7em;
        white-space: normal;
    }
}

/* ========================================================== */
/* ESCONDER O BOTÃO FIXO DE INGRESSO NA PRIMEIRA SEÇÃO MOBILE */
/* ========================================================== */

@media (max-width: 900px) {

    body:not(.show-mobile-ticket) .mobile-ticket-button {
        display: none;
    }

    body.show-mobile-ticket .mobile-ticket-button {
        display: flex;
    }

}


/* Aparência semelhante ao navegador em 90% — somente computador */

/* ========================================================== */
/* CONTAGEM REGRESSIVA                                        */
/* ========================================================== */

.countdown-section {
    background: var(--black-soft);
    display: grid;
    grid-template-columns: 55% 45%;
    min-height: 760px;
    overflow: hidden;
}

.countdown-section__image {
    min-height: 760px;
    overflow: hidden;
    position: relative;
}

.countdown-section__image::after {
    background: linear-gradient(
        90deg,
        transparent 60%,
        var(--black-soft) 100%
    );
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.countdown-section__image img {
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 900ms ease;
    width: 100%;
}

.countdown-section:hover .countdown-section__image img {
    transform: scale(1.035);
}

.countdown-section__content {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding:
        100px
        max(32px, calc((100vw - var(--container)) / 2))
        100px
        55px;
}

.countdown-section__title {
    color: var(--white);
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(4rem, 7vw, 7.5rem);
    font-weight: 400;
    letter-spacing: 0.025em;
    line-height: 0.88;
    margin-bottom: 30px;
    max-width: 650px;
    text-transform: uppercase;
}

.countdown-section__text {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.8;
    max-width: 600px;
}

.countdown {
    border-bottom: 1px solid var(--border-light);
    border-top: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: repeat(4, minmax(90px, 1fr));
    margin-top: 42px;
    max-width: 650px;
    width: 100%;
}

.countdown__item {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 135px;
    padding: 20px 10px;
    text-align: center;
}

.countdown__item + .countdown__item {
    border-left: 1px solid var(--border-light);
}

.countdown__item strong {
    color: var(--gold-light);
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(2.8rem, 4vw, 4.8rem);
    font-weight: 400;
    letter-spacing: 0.04em;
    line-height: 1;
}

.countdown__item span {
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    margin-top: 9px;
    text-transform: uppercase;
}

.countdown-section__button {
    margin-top: 38px;
}

.countdown-section.is-ended .countdown {
    display: none;
}

.countdown-section.is-ended .countdown-section__title {
    color: var(--gold-light);
}

/* TABLET */

@media (max-width: 1050px) {
    .countdown-section {
        grid-template-columns: 50% 50%;
    }

    .countdown-section__content {
        padding: 80px 35px;
    }

    .countdown-section__title {
        font-size: clamp(3.4rem, 7vw, 5.5rem);
    }

    .countdown {
        grid-template-columns: repeat(2, 1fr);
    }

    .countdown__item:nth-child(3) {
        border-left: 0;
        border-top: 1px solid var(--border-light);
    }

    .countdown__item:nth-child(4) {
        border-top: 1px solid var(--border-light);
    }
}

/* CELULAR */

@media (max-width: 768px) {
    .countdown-section {
        display: block;
        min-height: auto;
    }

    .countdown-section__image {
        height: 520px;
        min-height: 0;
    }

    .countdown-section__image::after {
        background: linear-gradient(
            180deg,
            transparent 55%,
            var(--black-soft) 100%
        );
    }

    .countdown-section__content {
        padding: 55px 22px 75px;
    }

    .countdown-section__title {
        font-size: clamp(3.3rem, 17vw, 5rem);
        margin-bottom: 24px;
    }

    .countdown-section__text {
        font-size: 0.95rem;
    }

    .countdown {
        margin-top: 32px;
    }

    .countdown__item {
        min-height: 110px;
    }

    .countdown__item strong {
        font-size: 3rem;
    }

    .countdown-section__button {
        margin-top: 30px;
        width: 100%;
    }
} 
/* ==========================================================
   MOSTRAR A FOTO INTEIRA DOS GUERREIROS
   ========================================================== */

.group-introduction{
    align-items: center;
}

.group-introduction__image{
    height: auto !important;
    display: flex;
    align-items: center;
    justify-content: center;
}

.group-introduction__image img{
    width: 100%;
    height: auto !important;
    object-fit: contain !important;
    display: block;
}

/* ==========================================================
   FOTO INTEIRA E MAIOR NA SEÇÃO GUERREIROS
   ========================================================== */

@media (min-width: 901px){

    .group-introduction{
        display: grid !important;
        grid-template-columns: minmax(0, 62%) minmax(320px, 38%) !important;
        align-items: center !important;
    }

    .group-introduction__image{
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    .group-introduction__image img{
        display: block !important;
        width: 100% !important;
        height: auto !important;
        max-width: none !important;
        object-fit: contain !important;
    }

}

/* ==========================================================
   AJUSTE RESPONSIVO PARA NOTEBOOKS
   Sem zoom, sem corte e sem rolagem horizontal
   ========================================================== */


body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Notebooks entre 901px e 1600px */
@media (min-width: 901px) and (max-width: 1600px) {

    :root {
        --container: 1120px;
        --header-height: 74px;
    }

    /* Espaçamento geral das seções */
    .section {
        padding-top: 90px;
        padding-bottom: 90px;
    }

    .section-heading {
        margin-bottom: 48px;
    }

    /* Menu */
    .header {
        height: 74px;
    }

    .header.is-scrolled {
        height: 62px;
    }

    .navigation {
        gap: 18px;
    }

    .navigation > a:not(.button) {
        font-size: 0.67rem;
    }

    .button {
        min-height: 52px;
        padding-left: 25px;
        padding-right: 25px;
    }

    /* ======================================================
       HERO
       ====================================================== */

    .hero,
    .hero__content {
        min-height: 100svh;
    }

    .hero__content {
        padding-top: calc(var(--header-height) + 25px);
        padding-bottom: 45px;
        padding-left: 4.5vw;
        padding-right: 3vw;
        width: 61%;
    }

    .hero__content > .eyebrow {
        margin-bottom: 18px;
    }

    .hero__title {
        font-size: clamp(4.4rem, 8vw, 7.4rem);
        line-height: 0.82;
    }

    .hero__title span:last-child {
        font-size: 0.72em;
    }

    .hero__description {
        font-size: 1rem;
        line-height: 1.65;
        margin-top: 32px;
        max-width: 530px;
    }

    .event-summary {
        margin-top: 28px;
        max-width: 590px;
    }

    .event-summary div {
        padding: 14px 16px;
    }

    .hero__actions {
        gap: 22px;
        margin-top: 28px;
    }

    .hero__play {
        height: 90px;
        right: 12%;
        width: 90px;
    }

    .hero__play::after {
        font-size: 0.65rem;
        top: calc(100% + 16px);
    }

    .hero__play span {
        border-bottom-width: 12px;
        border-left-width: 20px;
        border-top-width: 12px;
    }

    /* ======================================================
       NOSSA NATUREZA / SINOPSE
       ====================================================== */

    .synopsis {
        min-height: 650px;
    }

    .synopsis-gallery {
        min-height: 650px;
    }

    .synopsis-copy {
        padding: 75px 5vw 70px 3vw;
    }

    .synopsis-copy h2 {
        font-size: clamp(2.8rem, 4.5vw, 4.5rem);
    }

    .synopsis-copy p {
        font-size: 0.96rem;
        line-height: 1.7;
    }

    /* ======================================================
       GALERIA
       ====================================================== */

    .gallery-grid {
        gap: 14px;
        grid-auto-rows: 210px;
    }

    .gallery-card figcaption,
    .gallery-video__text strong {
        font-size: 1.45rem;
    }

    /* ======================================================
       CONTAGEM REGRESSIVA
       ====================================================== */

    .countdown-section {
        min-height: 620px;
    }

    .countdown-section__image {
        min-height: 620px;
    }

    .countdown-section__content {
        padding-top: 70px;
        padding-bottom: 70px;
        padding-left: 42px;
    }

    .countdown-section__title {
        font-size: clamp(3.8rem, 5.5vw, 5.5rem);
        margin-bottom: 22px;
    }

    .countdown-section__text {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    .countdown {
        margin-top: 30px;
    }

    .countdown__item {
        min-height: 105px;
        padding: 15px 8px;
    }

    .countdown__item strong {
        font-size: clamp(2.5rem, 3.5vw, 3.8rem);
    }

    .countdown-section__button {
        margin-top: 28px;
    }

    /* ======================================================
       TEATRO
       ====================================================== */

    .venue {
        gap: 55px;
    }

    .venue__image,
    .venue__image img {
        min-height: 480px;
    }

    .venue__details {
        margin: 28px 0;
    }

    .venue__details div {
        padding: 17px 0;
    }

    /* ======================================================
       GUERREIROS
       ====================================================== */

    

    .group-introduction__image,
    .group-introduction__image img {
        min-height: 0 !important;
    }

    .group-introduction__content .section-title {
        font-size: clamp(3.2rem, 5vw, 5rem);
    }

    .group-introduction__content p {
        font-size: 0.94rem;
        line-height: 1.7;
    }

    /* ======================================================
       PROJETOS
       ====================================================== */

    .projects__grid {
        gap: 15px;
    }

    .project-card {
        min-height: 270px;
        padding: 28px;
    }

    .project-card > span {
        font-size: 1.7rem;
        margin-bottom: 42px;
    }

    .project-card h3 {
        font-size: 1.85rem;
    }

    .project-card p {
        font-size: 0.82rem;
    }

    /* ======================================================
       CHAMADA FINAL
       ====================================================== */

    .final-call {
        min-height: 610px;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .final-call h2 {
        font-size: clamp(4rem, 7vw, 6.8rem);
    }

    .final-call p:not(.eyebrow) {
        font-size: 1rem;
        margin-top: 22px;
        margin-bottom: 30px;
    }

    /* Rodapé */
    .footer {
        padding-top: 28px;
        padding-bottom: 28px;
    }
}

/* ==========================================================
   GUERREIROS — AJUSTE SOMENTE PARA COMPUTADORES GRANDES
   Notebook e celular permanecem como estão
   ========================================================== */

@media (min-width: 1601px) {

    .group-introduction {
        display: grid !important;
        grid-template-columns:
            minmax(0, 68%)
            minmax(340px, 32%) !important;
        gap: 70px !important;
        align-items: center !important;
        width: 100% !important;
    }

    .group-introduction__image {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
    }

    .group-introduction__image img {
        display: block !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        max-width: none !important;
        object-fit: contain !important;
        object-position: center !important;
    }

    .group-introduction__content {
        min-width: 0 !important;
    }
}

@media (min-width: 1601px) {

    .group-section.section {
        padding-top: 85px !important;
        padding-bottom: 85px !important;
        padding-left: 5vw !important;
        padding-right: 5vw !important;
    }
}
/* Primeira seção ocupando exatamente uma tela */
@media (min-width: 1024px) {
    /* Mantém o restante do site no tamanho anterior */
    html {
        zoom: 0.9;
    }

    /* Compensa o zoom apenas na primeira seção */
    #inicio.hero,
    #inicio.hero .hero__content {
        min-height: 111.12vh !important;
    }
}

/* ==========================================================
   GALERIA HORIZONTAL DO ESPETÁCULO
   ========================================================== */

.show-gallery {
    background:
        radial-gradient(
            circle at 20% 10%,
            rgba(118, 81, 61, 0.16),
            transparent 32%
        ),
        #110e0c;
    color: var(--white);
    overflow: hidden;
    padding: 110px 0 90px;
}


/* ==========================================================
   CABEÇALHO
   ========================================================== */

.show-gallery__header {
    margin: 0 auto 85px;
    max-width: 1100px;
    padding: 0 30px;
    text-align: center;
}

.show-gallery__eyebrow {
    color: var(--gold-light);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.24em;
    margin-bottom: 22px;
    text-transform: uppercase;
}

.show-gallery__title {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(4rem, 7.5vw, 8rem);
    font-weight: 400;
    letter-spacing: 0.015em;
    line-height: 0.88;
    margin: 0 auto 30px;
    max-width: 1000px;
    text-transform: uppercase;
    text-wrap: balance;
}

.show-gallery__introduction {
    color: rgba(255, 255, 255, 0.68);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 auto;
    max-width: 650px;
}


/* ==========================================================
   ÁREA DE ARRASTAR
   ========================================================== */

.show-gallery__viewport {
    cursor: grab;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 25px 5vw 45px;
    scrollbar-width: none;
    user-select: none;
    width: 100%;
}

.show-gallery__viewport::-webkit-scrollbar {
    display: none;
}

.show-gallery__viewport.is-dragging {
    cursor: grabbing;
}

.show-gallery__track {
    align-items: center;
    display: flex;
    gap: clamp(80px, 9vw, 170px);
    width: max-content;
}


/* ==========================================================
   CADA COMPOSIÇÃO
   ========================================================== */

.show-scene {
    align-items: center;
    display: grid;
    flex: 0 0 min(1400px, 92vw);
    grid-template-columns:
        minmax(0, 62%)
        minmax(320px, 38%);
    min-height: min(780px, 80vh);
    position: relative;
}

.show-scene--image-right {
    grid-template-columns:
        minmax(320px, 38%)
        minmax(0, 62%);
}


/* ==========================================================
   IMAGENS
   ========================================================== */

.show-scene__image {
    height: min(760px, 76vh);
    margin: 0;
    min-height: 600px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.show-scene--image-left .show-scene__image {
    clip-path: polygon(
        0 0,
        100% 4%,
        92% 100%,
        0 96%
    );
}

.show-scene--image-right .show-scene__image {
    clip-path: polygon(
        8% 4%,
        100% 0,
        100% 96%,
        0 100%
    );
    grid-column: 2;
    grid-row: 1;
}

.show-scene__image::after {
    background:
        linear-gradient(
            180deg,
            transparent 58%,
            rgba(0, 0, 0, 0.48) 100%
        );
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.show-scene__image img {
    display: block;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    transform: scale(1.01);
    transition: transform 500ms ease;
    width: 100%;
}

.show-scene__number {
    bottom: 32px;
    color: rgba(255, 255, 255, 0.82);
    font-family: "Bebas Neue", sans-serif;
    font-size: 1.5rem;
    left: 34px;
    letter-spacing: 0.13em;
    position: absolute;
    z-index: 2;
}


/* ==========================================================
   PAINEL DE TEXTO
   ========================================================== */

.show-scene__content {
    box-sizing: border-box;
    min-width: 0;
    padding:
        clamp(70px, 6vw, 110px)
        clamp(45px, 5vw, 90px);
    position: relative;
    z-index: 3;
}

.show-scene--image-left .show-scene__content {
    margin-left: -8vw;
    padding-left: clamp(100px, 10vw, 170px);
}

.show-scene--image-right .show-scene__content {
    grid-column: 1;
    grid-row: 1;
    margin-right: -8vw;
    padding-right: clamp(100px, 10vw, 170px);
    text-align: right;
}

.show-scene__content::before {
    background:
        radial-gradient(
            circle at 80% 15%,
            rgba(196, 154, 85, 0.09),
            transparent 38%
        ),
        #191411;
    content: "";
    inset: 0;
    position: absolute;
    z-index: -1;
}

.show-scene--image-left .show-scene__content::before {
    clip-path: polygon(
        10% 0,
        100% 5%,
        94% 94%,
        0 100%
    );
    transform: rotate(1deg);
}

.show-scene--image-right .show-scene__content::before {
    clip-path: polygon(
        0 5%,
        90% 0,
        100% 100%,
        6% 94%
    );
    transform: rotate(-1deg);
}

.show-scene__label {
    color: var(--gold-light);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    line-height: 1.5;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.show-scene__content h3 {
    font-family: "Bebas Neue", sans-serif;
    font-size: clamp(3.5rem, 5vw, 6.5rem);
    font-weight: 400;
    letter-spacing: 0.01em;
    line-height: 0.86;
    margin: 0 0 32px;
    max-width: 100%;
    overflow-wrap: normal;
    text-wrap: balance;
    text-transform: uppercase;
    word-break: normal;
}

.show-scene__description {
    color: rgba(255, 255, 255, 0.72);
    font-size: clamp(0.96rem, 1.05vw, 1.08rem);
    line-height: 1.85;
    margin: 0;
    max-width: 520px;
    overflow-wrap: break-word;
}

.show-scene--image-right .show-scene__description,
.show-scene--image-right .show-scene__label {
    margin-left: auto;
}


/* ==========================================================
   PEQUENA INSTRUÇÃO
   ========================================================== */

.show-gallery__instruction {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    margin: 28px 0 0;
    text-align: center;
    text-transform: uppercase;
}


/* ==========================================================
   EFEITO SOMENTE EM COMPUTADORES
   ========================================================== */

@media (hover: hover) and (pointer: fine) {

    .show-scene:hover .show-scene__image img {
        transform: scale(1.025);
    }
}


/* ==========================================================
   TABLET
   ========================================================== */

@media (max-width: 1100px) {

    .show-scene,
    .show-scene--image-right {
        flex-basis: 94vw;
        grid-template-columns:
            minmax(0, 58%)
            minmax(300px, 42%);
    }

    .show-scene--image-left .show-scene__content {
        margin-left: -7vw;
        padding-left: 85px;
    }

    .show-scene--image-right .show-scene__content {
        margin-right: -7vw;
        padding-right: 85px;
    }

    .show-scene__content h3 {
        font-size: clamp(3rem, 5vw, 5rem);
    }
}


/* ==========================================================
   CELULAR
   ========================================================== */

@media (max-width: 768px) {

    .show-gallery {
        padding: 85px 0 70px;
    }

    .show-gallery__header {
        margin-bottom: 50px;
        padding: 0 22px;
    }

    .show-gallery__title {
        font-size: clamp(3.2rem, 15vw, 5rem);
        line-height: 0.9;
    }

    .show-gallery__viewport {
        padding:
            10px
            18px
            35px;
    }

    .show-gallery__track {
        gap: 28px;
    }

    .show-scene,
    .show-scene--image-right {
        display: flex;
        flex: 0 0 calc(100vw - 36px);
        flex-direction: column;
        min-height: 0;
        width: calc(100vw - 36px);
    }

    .show-scene__image,
    .show-scene--image-right .show-scene__image {
        clip-path: polygon(
            0 0,
            100% 0,
            100% 92%,
            0 100%
        );
        flex: none;
        grid-column: auto;
        grid-row: auto;
        height: min(62vh, 540px);
        min-height: 420px;
        order: 1;
        width: 100%;
    }

    .show-scene__content,
    .show-scene--image-left .show-scene__content,
    .show-scene--image-right .show-scene__content {
        box-sizing: border-box;
        grid-column: auto;
        grid-row: auto;
        margin: -52px 0 0;
        order: 2;
        padding:
            82px
            28px
            48px;
        text-align: left;
        width: 100%;
    }

    .show-scene__content::before,
    .show-scene--image-left .show-scene__content::before,
    .show-scene--image-right .show-scene__content::before {
        clip-path: polygon(
            0 9%,
            100% 0,
            96% 100%,
            3% 96%
        );
        transform: none;
    }

    .show-scene__content h3 {
        font-size: clamp(2.8rem, 12vw, 4.2rem);
        line-height: 0.9;
        max-width: 100%;
    }

    .show-scene__description,
    .show-scene--image-right .show-scene__description,
    .show-scene--image-right .show-scene__label {
        margin-left: 0;
        max-width: 100%;
    }

    .show-scene__description {
        font-size: 0.93rem;
        line-height: 1.75;
    }

    .show-gallery__instruction {
        margin-top: 12px;
    }
}


/* ==========================================================
   OTIMIZAÇÃO
   ========================================================== */

.show-scene {
    content-visibility: auto;
    contain-intrinsic-size: 1200px 760px;
}

.show-scene__image {
    contain: paint;
    isolation: isolate;
}

@media (max-width: 768px) {

    .show-scene__image img {
        transform: none;
        transition: none;
    }
}

/* Todos os títulos mantêm o mesmo tamanho */
.show-scene__content h3 {
    font-size: clamp(3.5rem, 5vw, 6.5rem);
    line-height: 0.86;
    max-width: 100%;
    overflow-wrap: normal;
    word-break: normal;
    text-wrap: balance;
}

/* Aumenta a largura reservada ao texto */
.show-scene,
.show-scene--image-right {
    grid-template-columns:
        minmax(0, 55%)
        minmax(430px, 45%);
}

/* Mantém o painel por cima da imagem, mas com mais espaço */
.show-scene--image-left .show-scene__content {
    margin-left: -6vw;
    padding-left: clamp(85px, 8vw, 140px);
}

.show-scene--image-right .show-scene__content {
    margin-right: -6vw;
    padding-right: clamp(85px, 8vw, 140px);
}


@media (max-width: 768px) {
    .show-scene:nth-child(1) .show-scene__image img {
        object-position: 42% center;
    }
}

/* ==========================================================
   AJUSTE DE ESPAÇAMENTO DA GALERIA
   ========================================================== */

.show-gallery {
    padding-top: 70px;
    padding-bottom: 70px;
}

.show-gallery__header {
    margin-bottom: 20px;
}

.show-gallery__viewport {
    padding-top: 0;
}

/* ==========================================================
   NAVEGAÇÃO SIMPLES DA GALERIA
   ========================================================== */

.show-gallery__navigation {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-top: 34px;
    padding: 0 24px;
}

.show-gallery__nav-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: var(--white);
    cursor: pointer;
    display: flex;
    flex: 0 0 54px;
    font-size: 1.25rem;
    height: 54px;
    justify-content: center;
    overflow: hidden;
    transition:
        background 280ms ease,
        border-color 280ms ease,
        color 280ms ease,
        opacity 280ms ease,
        transform 280ms ease;
}

.show-gallery__nav-button:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.show-gallery__nav-button:active {
    transform: translateY(0) scale(0.96);
}

.show-gallery__nav-button:disabled {
    cursor: default;
    opacity: 0.28;
    pointer-events: none;
}

.show-gallery__nav-button span {
    transition: transform 300ms ease;
}

.show-gallery__nav-button--previous:hover span {
    transform: translateX(-3px);
}

.show-gallery__nav-button--next:hover span {
    transform: translateX(3px);
}

.show-gallery__nav-line {
    position: relative;
    width: min(36vw, 460px);
    height: 2px;
    overflow: visible;
}

.show-gallery__nav-track {
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,.18);
}

.show-gallery__nav-indicator {
    position: absolute;
    top: 50%;
    left: 0;

    width: 14px;
    height: 14px;

    border-radius: 50%;

    background: var(--gold-light);

    transform: translate(-50%, -50%);

    box-shadow:
        0 0 0 5px rgba(231,201,135,.12),
        0 0 18px rgba(231,201,135,.45);

    transition:
        left .65s cubic-bezier(.22,.8,.25,1),
        transform .25s ease;
}

.show-gallery__nav-button:hover ~ .show-gallery__nav-line .show-gallery__nav-indicator {
    transform: translate(-50%, -50%) scale(1.1);
}

@media (max-width: 768px) {
    .show-gallery__navigation {
        gap: 12px;
        margin-top: 22px;
    }

    .show-gallery__nav-button {
        flex-basis: 48px;
        height: 48px;
    }

    .show-gallery__nav-line {
        width: min(42vw, 240px);
    }
}

/* ==========================================================
   TRANSIÇÃO ENTRE TEXTO E FOTO
   ========================================================== */

.hero__shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background:
        linear-gradient(
            90deg,
            #050504 0%,
            #050504 24%,
            rgba(5, 5, 4, 0.99) 34%,
            rgba(5, 5, 4, 0.96) 42%,
            rgba(5, 5, 4, 0.88) 50%,
            rgba(5, 5, 4, 0.72) 58%,
            rgba(5, 5, 4, 0.50) 66%,
            rgba(5, 5, 4, 0.26) 74%,
            rgba(5, 5, 4, 0.08) 84%,
            transparent 100%
        );
}

/* ==========================================================
   TRANSIÇÃO SUAVE ENTRE TEXTO E FOTO
   ========================================================== */

.hero__shade {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;

    background: linear-gradient(
        90deg,
        #050504 0%,
        #050504 28%,
        rgba(5, 5, 4, 0.98) 38%,
        rgba(5, 5, 4, 0.90) 48%,
        rgba(5, 5, 4, 0.72) 58%,
        rgba(5, 5, 4, 0.48) 68%,
        rgba(5, 5, 4, 0.24) 78%,
        rgba(5, 5, 4, 0.08) 88%,
        transparent 100%
    );
}

.hero__shade::after {
    display: none;
}

/* ==========================================================
   AJUSTE DA GALERIA NO CELULAR
   ========================================================== */

@media (max-width: 768px) {

    .show-scene__content h3{
        max-width: 100%;
        width: 100%;
        font-size: clamp(2.8rem, 10vw, 4rem);
        line-height: .9;
        letter-spacing: .01em;

        word-break: keep-all;
        overflow-wrap: normal;
        hyphens: none;
    }

}

.show-gallery__viewport {
    cursor: grab;
    overflow-x: auto;
    touch-action: pan-y;
}

.show-gallery__viewport.is-dragging {
    cursor: grabbing;
    user-select: none;
}

@media (max-width: 768px) {
    .show-gallery__viewport {
        cursor: auto;
        touch-action: pan-x pan-y;
        -webkit-overflow-scrolling: touch;
    }
}