/* =============================================
RESET & BASE
   ============================================= */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
}

/* =============================================
FONTS
   ============================================= */
@font-face {
    font-family: 'Mirano';
    src: url(./assets/tipografia/Mirano/MiranoExtendedVF.ttf) format('truetype');
    font-weight: 100 900;
    font-stretch: 50% 200%;
}

@font-face {
    font-family: 'MiranoBold';
    src: url(./assets/tipografia/Mirano/MiranoExtended-Bold.ttf) format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'MiranoBoldItalic';
    src: url(./assets/tipografia/Mirano/MiranoExtended-BoldItalic.ttf) format('truetype');
    font-weight: 700;
    font-style: italic;
}

@font-face {
    font-family: 'Helvetica';
    src: url(./assets/tipografia/Helvetica/Helvetica.ttc) format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'Helvetica';
    src: url(./assets/tipografia/Helvetica/Helvetica.ttc) format('truetype');
    font-weight: 700;
}

@font-face {
    font-family: 'HelveticaCondensed';
    src: url(./assets/tipografia/Helvetica/helvetica-condensed.ttf) format('truetype');
    font-weight: 400;
}

@font-face {
    font-family: 'HelveticaCondensedBold';
    src: url(./assets/tipografia/Helvetica/helvetica-condensedbold.ttf) format('truetype');
    font-weight: 700;
}

/* =============================================
CSS VARIABLES
   ============================================= */
:root {
    --preto: #0A0A0A;
    --cinza: #DCDDD5;
    --verde: #D2FF03;
    --laranja: #ff5e00;
    --azul: #003AE6;
    --branco: #FFFFFF;
    --cinza-escuro: #1A1A1A;
    --cinza-medio: #2A2A2A;
}

/* =============================================
BODY
   ============================================= */
body {
    background-color: var(--preto);
    color: var(--cinza);
    font-family: 'Helvetica', 'Arial', sans-serif;
    overflow-x: hidden;
}


/* =============================================
UTILITY
   ============================================= */
.btn-cta, .btn-mobile {
    display: flex;
    background-color: var(--verde);
    font-family: 'Helvetica', sans-serif;
    letter-spacing: 0;
    text-decoration: none;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta .btn-cta-text {
    text-transform: uppercase;
    font-size: 1.1rem;
    font-style: oblique;
    font-weight: 800;
    text-align: center;
    color: var(--preto);
    display: block;
    transform: skew(-30deg);
    -webkit-text-stroke: #0A0A0A 1.0px;
}

.btn-cta-text-mobile {
    text-transform: uppercase;
    font-size: 1.1rem;
    font-style: oblique;
    font-weight: 800;
    text-align: center;
    color: var(--preto);
    display: block;
    transform: skew(-30deg);
    -webkit-text-stroke: #0A0A0A 1.0px;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo-img {
    height: 62px;
    width: auto;
    display: block;
}

.nav-logo-desktop {
    display: none;
}

.menu-icon {
    display: flex;
}

.nav-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.r1, .r2, .r3 {
    display: block;
    height: 10px;
    background: var(--verde);
    align-self: flex-end;
    transform-origin: right center;
    mix-blend-mode: difference;
    transition: transform 0.25s cubic-bezier(0.77, 0, 0.18, 1),
                opacity 0.25s ease;
}

.r1 { width: 60px; }
.r2 { width: 50px; transition-delay: 0.05s, 0.05s; }
.r3 { width: 71px; transition-delay: 0.10s, 0.10s; }

.nav-menu-btn.is-active .r1,
.nav-menu-btn.is-active .r2,
.nav-menu-btn.is-active .r3 {
    transform: scaleX(0);
    opacity: 0;
}

.nav-menu-btn.is-active .r1 { transition-delay: 0.10s, 0.10s; }
.nav-menu-btn.is-active .r2 { transition-delay: 0.05s, 0.05s; }
.nav-menu-btn.is-active .r3 { transition-delay: 0s, 0s; }

/* =============================================
MENU OVERLAY
   ============================================= */
.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background-color: var(--verde);
    background-image: url('./assets/imagens/background-menu.png');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
}

.menu-overlay.is-open {
    transform: translateX(0);
}

.menu-overlay-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: 50px 30px 0;
}

.menu-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
    opacity: 0;
    transform: rotate(-90deg) scale(0.6);
    transition: opacity 0.3s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-overlay.is-open .menu-close-btn {
    opacity: 1;
    transform: rotate(0deg) scale(1);
    transition-delay: 0.8s;
}

.menu-close-btn img {
    height: 32px;
    width: auto;
    display: block;
}

.menu-overlay-logo {
    filter: brightness(0);
}

.menu-overlay-logo .nav-logo-img {
    height: 30px;
}

.menu-overlay-nav {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    padding: 0 30px;
    flex: 1;
    margin-bottom: 200px;

}

.menu-overlay-link {
    font-family: 'MiranoBoldItalic', 'Mirano', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(1.8rem, 5vw, 5rem);
    color: var(--preto);
    text-decoration: none;
    line-height: 1.1;
    letter-spacing: -0.01em;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.menu-overlay-link span {
    display: block;
    clip-path: inset(0 0 0 100%);
}

.menu-overlay-link::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--preto);
    transform: translateX(115%);
}

.menu-overlay.is-open .menu-overlay-link span {
    animation: textReveal 0.55s cubic-bezier(0.95, 0, 0.95, 1) forwards;
}

.menu-overlay.is-open .menu-overlay-link::after {
    animation: barSweep 0.75s cubic-bezier(0.25, 0, 0.25, 0.8) forwards;
}

.menu-overlay.is-open .menu-overlay-link:nth-child(1) span,
.menu-overlay.is-open .menu-overlay-link:nth-child(1)::after { animation-delay: 0.40s; }
.menu-overlay.is-open .menu-overlay-link:nth-child(2) span,
.menu-overlay.is-open .menu-overlay-link:nth-child(2)::after { animation-delay: 0.55s; }
.menu-overlay.is-open .menu-overlay-link:nth-child(3) span,
.menu-overlay.is-open .menu-overlay-link:nth-child(3)::after { animation-delay: 0.70s; }
.menu-overlay.is-open .menu-overlay-link:nth-child(4) span,
.menu-overlay.is-open .menu-overlay-link:nth-child(4)::after { animation-delay: 0.85s; }

@keyframes barSweep {
    0%   { transform: translateX(105%);  animation-timing-function: cubic-bezier(0.55, 0, 0.1, 1); }
    38%  { transform: translateX(0%);    animation-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94); }
    100% { transform: translateX(-105%); }
}

@keyframes textReveal {
    0%   { clip-path: inset(0 0 0 100%); }
    40%  { clip-path: inset(0 0 0 100%); }
    100% { clip-path: inset(0 0 0 0%); }
}


/* =============================================
HERO
   ============================================= */
.hero {
    position: relative;
    height: 100vh;
    background-color: var(--preto);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    opacity: 0;
}

.hero-video-desktop {
    display: none;
}

.hero-webgl {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-logo {
    width: 100%;
    height: auto;
    margin-top: 60px;
    margin-bottom: 40px;
}

.hero-logo-desktop {
    display: none;
}


/* Subtle grid texture overlay */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(210, 255, 3, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(210, 255, 3, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 0 60px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-title-wrap {
    overflow: hidden;
    width: 100%;
}


.hero-content .btn-cta {
    margin-top: 48px;
    margin-left: auto;
    margin-right: auto;
}


/* =============================================
GALERIA 3D
   ============================================= */
.galeria-stage {
    position: absolute;
    inset: 0;
    perspective: 900px;
    perspective-origin: 50% 50%;
    overflow: hidden;
    z-index: 1;
}

.galeria-card {
    position: absolute;
    overflow: hidden;
    will-change: transform, opacity;
}

.galeria-card img {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;
    user-select: none;
}

/* Posições finais espalhadas */
.galeria-card:nth-child(1) { width: 40%; left: 5%;  top: 20%;    }
.galeria-card:nth-child(2) { width: 40%; left: 38%; top: 25%;    }
.galeria-card:nth-child(3) { width: 40%; right: 5%; top: 30%;    }
.galeria-card:nth-child(4) { width: 40%; left: 2%;  top: 45%;   }
.galeria-card:nth-child(5) { width: 40%; left: 32%; top: 45%;   }
.galeria-card:nth-child(6) { width: 40%; right: 3%; top: 41%;   }
.galeria-card:nth-child(7) { width: 40%; left: 10%; top: 60%; }
.galeria-card:nth-child(8) { width: 40%; right: 9%; top: 60%; }

/* =============================================
VIDEO TEASER
   ============================================= */
.video-teaser {
    background-color: var(--cinza);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.video-teaser-bg {
    position: absolute;
    inset: 0;
    top: 100px;
    width: 100%;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.video-teaser-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0px;
    cursor: pointer;
}

.play-btn {
    display: flex;
    width: auto;
    height: 45px;
    padding: 0;
    background-color:transparent;
    border: none;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.2s, background-color 0.2s;
    cursor: pointer;
}

.play-btn:hover {
    transform: scale(1.1);
}

.video-teaser-text {
    padding: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.teaser-big {
    display: inline-block;
    font-family: 'Mirano', sans-serif;
    font-weight: 600;
    font-style: italic;
    font-size: 1.0rem;
    color: var(--preto);
    letter-spacing: -0.05em;
    transform: scaleX(2.5); /* controla o quanto estica */
}
.teaser-small {
    font-family: 'Helvetica', sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    margin-left: 10px;
    margin-top: -3px;
    color: var(--preto);
}


/* =============================================
ABOUT
   ============================================= */
.about {
    background-color: var(--cinza);
    padding: 0 16px 60px;
}

.about-desktop {
    display: none;
}


.about-inner {
    max-width: 680px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-text:nth-child(1) {
    margin-top: 30px;

}
.about-text {
    text-align: center;
    font-family: 'Helvetica', sans-serif;
    letter-spacing: -0.03em;
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--preto);
}

.highlight {
    font-family: 'mirano', sans-serif;
    letter-spacing: -0.06em;
    transform: skew(-20deg);
    font-style: oblique;
}


.about-inner .btn-cta {
    align-self: flex-start;
    margin-top: 16px;
}

/* =============================================
CANT MISS
   ============================================= */
.cant-miss {
    background-image: url(./assets/imagens/background-tickets.png);
    background-color: var(--cinza);
    position: relative;
    display: flex;
    background-size: cover;
    align-items: center;
    overflow: hidden;
}

.cant-miss-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    gap: 0px;
    padding: 0px;
    margin: 0px;
}

.cant-miss-pre {
    font-family: 'Mirano', sans-serif;
    font-size: 1.6rem;
    letter-spacing: -0.08em;
    color: var(--verde);
    margin-top: 120px;
    margin-bottom: 8px;
    margin-right: 0;
    font-weight: 600;
    text-align: left;
    padding-left: 8%;
}

.nao {
    font-family:'Mirano', sans-serif;
    color: var(--verde);
    letter-spacing: -0.02em;
    transform: scaleY(0.45);
    transform-origin: bottom;
    font-variation-settings: "wght" 600, "wdth" 180;
    font-style: oblique;
    display: block;
    text-align: right;
    margin-top: -1.0em;
    margin-right:0px;
    font-size: 7rem;
}
.nao-pode {
    display: none;
    position: absolute;
    top:49%;
    left: 50%;
    transform: translate(-50%, -50%) scaleY(0.48);
    transform-origin: center;
    font-family: 'Mirano', sans-serif;
    color: var(--verde);
    letter-spacing: -0.05em;
    font-variation-settings: "wght" 600, "wdth" 180;
    font-style: oblique;
    font-size: 7rem;
    white-space: nowrap;
}
.pode {
    display: block;
    font-family:'Mirano', sans-serif;
    color: var(--verde);
    margin-top: -1.1em;
    font-style: oblique;
    letter-spacing: -0.06em;
    font-variation-settings: "wght" 600, "wdth" 180;
    transform: scaleY(0.45);
    transform-origin: top;
    text-align: left;
    font-size: 7rem;
    margin-left: -10px;
}

.cant-miss-title {
    font-size: clamp(3.5rem, 22vw, 7rem);
}

.cant-miss-post {
    font-family: 'MiranoBoldItalic', 'Mirano', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    color: var(--verde);
    letter-spacing: -0.01em;
    margin-top: -95px;
    text-align: right;
    margin-right: 40px;}

.highlight-ingresso {
    font-family: 'MiranoBold', 'Mirano', sans-serif;
    font-style: oblique;
    font-weight: 600;
    color: var(--cinza);
    letter-spacing: -0.02em;
}

.cant-miss-sub {
    font-family: 'Helvetica', sans-serif;
    font-size: 1.0rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.03em;
    color: var(--cinza);
    margin-top: 40px;
}

.mapa {
    display: flex;
    width: auto;
    height: 300px;
    justify-content: center;
    margin-top: 50px;
    margin-bottom: 80px;
}

.setores {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-bottom: 100px;
}
.btn-ticket-desktop {
    display: none;
}

.btn-mobile {
    display: flex;
}

/* ==== POWER UP ===== */
.powerup {
    background-image: url(./assets/imagens/background-powerup.png);
    background-color: var(--laranja);
    background-size: cover;
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    clip-path: polygon(0 5%, 100% 0%, 100% 100%, 0 100%);
}


.powerup-inner {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.powerup-logo {
    display: flex;
    justify-content: center;
}


.powerup-desc {
    text-align: center;
    font-family: 'Helvetica', sans-serif;
    letter-spacing: -0.03em;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--preto);
}

.highlight-powerup {
    font-family: 'mirano', sans-serif;
    letter-spacing: -0.06em;
    font-weight: 800;
    font-style: oblique;
    font-size: 1.2rem;
}
.powerup-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.powerup-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px 10px;
}

.powerup-item-name {
    font-family: 'HelveticaCondensedBold', Arial, Helvetica, sans-serif;
    font-size: clamp(1.1rem, 4vw, 1.80rem);
    letter-spacing: -0.05em;
    font-weight: 700;
    color: var(--preto);
    display: flex;
    align-items: baseline;
    gap: 0px;
}

.powerup-item-price {
    font-family: 'HelveticaCondensedBold', Arial, Helvetica, sans-serif;
    font-size: clamp(1.1rem, 4vw, 1.80rem);
    letter-spacing: -0.05em;
    font-weight: 700;
    color: var(--preto);
    display: flex;
    align-items: baseline;
    gap: 0px;
}


.powerup-bundle-label {
    font-family: 'Helvetica', sans-serif;
    font-size: 1.1rem;
    letter-spacing: -0.05em;
    font-weight: 700;
    color: var(--preto);
    display: flex;
    align-items: baseline;
    gap: 0px;
}
.powerup-bundle-label-2 {
    margin-top: -5px;
    font-family: 'Helvetica', sans-serif;
    font-size: 1.1rem;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: var(--preto);
    display: flex;
    align-items: baseline;
    gap: 0px;
}

.powerup-bundle-prices {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}


.total {
    display: flex;
    flex-direction: column;
    border-top: 5px solid var(--preto);
    padding: 20px 16px;
    gap: 12px;
}

.total-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}


.powerup-bundle-group {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.powerup-old-price {
    position: relative;
    display: inline-block;
    font-family: 'Helvetica', sans-serif;
    font-size: clamp(1.1rem, 4vw, 1.80rem);
    letter-spacing: -0.05em;
    font-weight: 800;
    color: var(--preto);
    align-self: flex-end;
}

.powerup-old-price::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0%;
    width: 100%;
    height: 5px;
    background: var(--verde);
    transform: rotate(-15deg);
    transform-origin: center;
}

.powerup-new-price {
    font-family: 'MiranoBoldItalic', 'Mirano', sans-serif;
    font-size: clamp(1.8rem, 6vw, 3rem);
    font-style: italic;
    letter-spacing: -0.05em;
    font-weight: 800;
    color: var(--preto);
    display: block;
    line-height: 1;
}

/* =============================================
   VIDEO MODAL
   ============================================= */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.video-modal.is-open {
    opacity: 1;
    pointer-events: all;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.video-modal-content {
    position: relative;
    width: 92%;
    max-width: 800px;
    z-index: 1;
}

.video-modal-close {
    position: absolute;
    top: -44px;
    right: 0;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    line-height: 0;
}

.video-modal-close img {
    height: 16px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}


.video-modal-iframe-wrap {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-modal-iframe-wrap iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* =============================================
   FAQ
   ============================================= */
.faq {
    background-image: url(./assets/imagens/background-faq.png);
    background-color: var(--laranja);
    background-size: cover;
    padding-top: 40px;
    padding-bottom: 20px;
}

.faq-inner {
    max-width: 720px;
    margin: 0 auto;
}

.faq-title {
    width: 100%;
    margin-left: -20px;
    font-family: 'Arial Black', sans-serif;
    font-weight: 700;
    font-size: 13rem;
    font-style: oblique;
    text-align: center;
    color: var(--laranja);
    text-shadow: var(--laranja) 0px 0px 2px;
    letter-spacing: -0.05em;
    transform: scaleY(0.85);
    transform: scaleX(1.30);
    transform-origin: bottom;
    pointer-events: none;
}

.faq-list {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border: 2px solid var(--preto);
    border-bottom: none;
    padding: 0px 10px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 0;
    text-align: left;
    color: var(--preto);
    text-shadow: 0 0 3px rgba(255,255,255,0.6);
    transition: color 0.2s, text-shadow 0.2s;
}

.faq-question:hover {
    color: var(--laranja);
}

.faq-question span {
    font-family: 'Arial Black', 'Arial', sans-serif;
    font-size: 1.2rem;
    line-height: 1.0;
    font-weight: 900;
}

.faq-icon {
    flex-shrink: 0;
    width: 46.4px;
    height: 46.4px;
    transition: transform 0.3s ease, filter 0.2s;
    color: var(--preto);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(90deg);
}

.faq-question[aria-expanded="true"] {
    color: var(--preto);
}

.faq-answer {
    display: none;
    padding: 0 0 22px 0;
}

.faq-answer.is-open {
    display: block;
}

.faq-answer p,
.faq-answer ul,
.faq-answer li {
    font-family:'Arial', sans-serif;
    font-size: 0.88rem;
    line-height: 1.65;
    font-weight: 400;
    color: var(--preto);
}

.faq-answer ul {
    padding-left: 1.4em;
    margin: 6px 0;
}

.faq-answer p + p,
.faq-answer p + ul,
.faq-answer ul + p {
    margin-top: 8px;
}

.faq-answer a {
    color: var(--preto);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.faq-more {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-more.is-open {
    max-height: 9999px;
    transition: max-height 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.faq-toggle-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    width: 100%;
    background: none;
    border: none;
    border-top: 2px solid var(--preto);
    cursor: pointer;
    color: var(--laranja);
    font-family: 'arial', sans-serif;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: lowercase;
    padding: 20px 0;
    margin-top: 4px;
}

.faq-toggle-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-toggle-btn[aria-expanded="true"] .faq-toggle-icon {
    transform: rotate(180deg);
}

.faq-toggle-label {
    display: block;
}

.highlight-faq {
    font-family: 'mirano', sans-serif;
    letter-spacing: -0.06em;
    font-weight: 800;
    font-style: oblique;
    font-size: 1.0rem;
    text-transform: lowercase;
}


/* =============================================
   TEXT REVEAL — line by line
   ============================================= */
.reveal-wrap {
    position: relative;
    overflow: hidden;
}

.reveal-word-inner {
    clip-path: inset(0 0 0 100%);
}

.is-revealed .reveal-word-inner {
    animation: textReveal 1.1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
    animation-delay: var(--word-delay, 0s);
}

.reveal-line-bar {
    position: absolute;
    left: 0;
    width: 100%;
    background: var(--verde);
    transform: translateX(105%);
    pointer-events: none;
    z-index: 1;
}

.is-revealed .reveal-line-bar {
    animation: barSweep 1.1s cubic-bezier(0.65, 0, 0.35, 1) forwards;
    animation-delay: var(--line-delay, 0s);
}

.powerup .reveal-line-bar {
    background: var(--preto);
}


/* =============================================
   FOOTER
   ============================================= */
.footer {
    background-color: var(--cinza);
    background-image: url(./assets/imagens/background-footer.png);
    background-size: cover;
    overflow: hidden;
    position: relative;
}

.footer-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 48px 36px 56px;
}

/* Logo variantes — mobile: só gif */
.footer-logo-desktop { display: none; }
.footer-logo-mobile {
    order: 4;
    display: block;
    width: 100%;
    position: static;
}

/* Mobile: achata os wrappers para que nav/social/instagram
   se tornem filhos diretos do footer-inner e aceitem order */
.footer-columns {
    display: contents;
}

.footer-col-left {
    display: contents;
}

/* Frase (escondida no mobile) */
.footer-quote {
    display: none;
}

/* Nav — ordem 1 */
.footer-nav {
    order: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 48px;
}

.footer-nav-link:nth-child(odd)  { text-align: left; }
.footer-nav-link:nth-child(even) { text-align: right; }

.footer-nav-link {
    font-family: 'MiranoBoldItalic', 'Mirano', sans-serif;
    font-weight: 700;
    font-style: italic;
    font-size: clamp(1.2rem, 4vw, 1rem);
    color: var(--cinza);
    text-decoration: none;
    letter-spacing: -0.01em;
    transition: color 0.2s;
}

.footer-nav-link:hover {
    color: var(--verde);
}

/* Social — ordem 2 */
.footer-social {
    order: 2;
    display: flex;
    gap: 24px;
    align-items: center;
}

.footer-social-link {
    color: var(--verde);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.footer-social-link:hover {
    opacity: 0.7;
}

/* Feed Instagram — ordem 3, visível no mobile */
.footer-col-right {
    order: 3;
    display: block;
    width: 100%;
    position: relative;
    overflow: hidden;
    max-height: 340px;
    -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    mask-image: linear-gradient(to bottom, black 65%, transparent 0%);
}


.footer-copy {
    display: block;
    width: 100%;
    opacity: 0.5;
    margin-bottom: 20px;
    text-align: center;
}

/* Mantém a classe .footer-logo genérica sem quebrar outros usos */
.footer-logo {
    top:530px;
    position: absolute;
    max-width: 100%;
}



/* =============================================
   ELFSIGHT INSTAGRAM FEED — oculta perfil
   ============================================= */
.eapps-instagram-feed-header,
.eapps-instagram-feed-header-inner,
.eapps-instagram-feed-profile,
.eapps-instagram-feed-header-following-count,
.eapps-instagram-feed-header-stats,
.eapps-instagram-feed-header-bio,
.eapps-instagram-feed-header-title {
    display: none !important;
}



/* =============================================
   NAV DESKTOP LINKS — hidden on mobile
   ============================================= */
.nav-desktop-links {
    display: none;
}

/* =============================================
   TEASER-ABOUT WRAPPER — passthrough on mobile
   ============================================= */
.teaser-about-wrapper {
    display: contents;
}

/* toggle de elementos mobile/desktop */
.video-teaser-bg-desktop  { display: none; }
.video-teaser-inner-desktop { display: none; }

/* =============================================
   POWERUP CONTENT WRAPPER
   ============================================= */
.powerup-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* =============================================
   RESPONSIVE — Mobile First
   Base styles acima já são para mobile.
   Aqui escalamos para telas maiores.
   ============================================= */

/* Tablet e acima (768px+) */
/* =============================================
   TABLET / iPAD PRO (1024px+)
   ============================================= */
@media (min-width: 1024px) {
    /* garante layout mobile no tablet — sem colunas lado a lado */
    .teaser-about-wrapper {
        display: flex;
        flex-direction: column;
        min-height: unset;
        padding: 0;
        background-color: transparent;
    }

    .about-desktop {
        display: none;
    }

    .video-teaser {
        width: 100%;
    }

    .navbar {
        top: 100px;
        padding: 60px;
    }
    
    .hero-logo {
        margin-top: 200px;
        margin-bottom: 100px;
    }

    .video-teaser {
        aspect-ratio: auto;
        height: 80vh;
        background-size: cover;
    }

    .about {
        padding: 0 24px 80px;
    }

    .about-inner {
        padding: 0 40px;
    }

    .cant-miss-pre {
        font-size: 2rem;
        margin-top: 230px;
    }

    .cant-miss-title {
        font-size: clamp(4rem, 24vw, 10rem);
    }

    .nao {
        margin-left: 265px;
        margin-top: -70px;
    }

    .pode {
        margin-top: -230px;
    }

    .powerup-item {
        padding: 16px 50px;
    }

    .powerup-item-name,
    .powerup-item-price,
    .powerup-old-price {
        font-size: 1.80rem;
    }

    .powerup-new-price {
        font-size: 3rem;
    }

    .total {
        padding: 20px 50px;
    }

    .faq-list {
        padding: 40px;
    }

    .faq-question span {
        font-size: 1.2rem;
    }

    .faq-icon {
        width: 46.4px;
        height: 46.4px;
    }

    .faq-question {
        padding: 22px 0;
        gap: 16px;
    }

    .footer {
        min-height: 80vh;
    }

    .footer-nav {
        margin-top: 100px;
    }
}

/* =============================================
   LAPTOP / DESKTOP (1440px+)
   ============================================= */
@media (min-width: 1440px) {

    /* --- NAVBAR --- */
    .navbar {
        top: 0;
        padding: 40px 200px;
    }

    .nav-desktop-links {
        display: flex;
        gap: 40px;
        align-items: center;
    }

    .nav-desktop-link {
        font-family: 'Mirano', sans-serif;
        font-size: 1.3rem;
        font-style: oblique;
        font-weight: 700;
        color: var(--verde);
        text-decoration: none;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        transition: color 0.5s;
    }

    .nav-desktop-link:hover {
        color: var(--cinza);
    }

    .nav-logo-mobile {
        display: none;
    }

    .nav-logo-desktop {
        display: block;
        width: 70%;
        height: auto;
    }

    .hero-video-mobile {
        display: none;
    }

    .hero-video-desktop {
        display: block;
    }

    .menu-icon {
        display: none;
    }

    /* --- HERO --- */
    .hero {
        padding-top: 80px;
    }

    .hero-logo-mobile {
        display: none;
    }

    .hero-logo-desktop {
        display: block;
        width: 100%;
        margin: 0 auto 48px;
        margin-top: 0;
    }

    .hero-content {
        padding-bottom: 80px;

    }
    /* --- BOTÕES --- */
    .btn-cta {
        width: 18%;
        max-width: none;
        justify-content: center;
    }

    .btn-ticket-desktop {
        display: block;
        width: 100%;
        margin-top: 44px;
        margin-bottom: 70px;
    }

    .btn-ticket-desktop .btn-cta {
        width: fit-content;
        padding: 14px 32px;
    }

    .btn-mobile {
        display: none;
    }

    /* --- GALERIA CARDS — posições desktop (4 colunas) --- */
    .galeria-card:nth-child(1) { width: 22%; left: 1%;   top: 10%; }
    .galeria-card:nth-child(2) { width: 22%; left: 26%;  top: 5%;  }
    .galeria-card:nth-child(3) { width: 22%; left: 52%;  top: 8%;  }
    .galeria-card:nth-child(4) { width: 22%; right: 1%;  top: 6%;  }
    .galeria-card:nth-child(5) { width: 22%; left: 3%;   top: 54%; }
    .galeria-card:nth-child(6) { width: 22%; left: 28%;  top: 56%; }
    .galeria-card:nth-child(7) { width: 22%; left: 54%;  top: 52%; }
    .galeria-card:nth-child(8) { width: 22%; right: 2%;  top: 54%; }

    /* --- TEASER + ABOUT WRAPPER --- */
    .teaser-about-wrapper {
        display: flex;
        flex-direction: row;
        align-items: stretch;
        background-color: var(--cinza);
        min-height: 100vh;
        padding: 0% 20% ;
    }

    /* --- VIDEO TEASER (desktop: coluna esquerda 55%) --- */
    .video-teaser {
        flex: 0 0 55%;
        height: 100vh;
        min-height: unset;
        overflow: visible;
        position: relative;
    }

    /* troca de imagem de fundo */
    .video-teaser-bg-mobile  { display: none; }
    .video-teaser-bg-desktop {
        display: block;
        position: absolute;
        inset: 0;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 120%;
        height: 100vh;
        z-index: 0;
        pointer-events: none;
        object-fit: contain;
    }

    /* play mobile: oculto no desktop */
    .video-teaser-inner-mobile { display: none; }

    /* galeria: 8 cards em grid 2x4 */
    .galeria-card:nth-child(1) { width: 22%; left: 10%;  right: auto; top: 4%;  display: block; }
    .galeria-card:nth-child(2) { width: 42%; left: 52%; right: auto; top: 4%;  display: block; }
    .galeria-card:nth-child(3) { width: 42%; left: 0%;  right: auto; top: 28%; display: block; }
    .galeria-card:nth-child(4) { width: 42%; left: 58%; right: auto; top: 28%; display: block; }
    .galeria-card:nth-child(5) { width: 22%; left: 4%;  right: auto; top: 52%; display: block; }
    .galeria-card:nth-child(7) { width: 42%; left: 4%;  right: auto; top: 76%; display: block; }
    .galeria-card:nth-child(8) { width: 42%; left: 58%; right: auto; top: 56%; display: block; }

    /* --- ABOUT (mobile: oculto no desktop) --- */
    .about {
        display: none;
    }

    /* --- ABOUT DESKTOP (coluna direita 45%) --- */
    .about-desktop {
        min-height: 250vh;
        display: flex;
        gap: 20px;
        flex-direction: column;
        justify-content: center;
        background-color: var(--cinza);
        padding: 0px 0px 0px 0px;
        margin-left: -310px;
    }

    /* play desktop: visível centrado dentro da coluna esquerda (video-teaser) */
    .video-teaser-inner-desktop {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
    }

    .about-inner {
        max-width: none;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .about-text:nth-child(1) {
        margin-top: 0;
    }

    .about-text {
        text-align: left;
        font-size: 1.1rem;
        padding: 0px;
    }

    .about-inner .btn-cta {
        margin-left: 0;
        margin-top: 16px;
        align-self: flex-start;
    }

    /* --- CANT MISS --- */

    .cant-miss {
        background-image: url(./assets/imagens/background-tickets-desktop.png);
        background-size: cover;
    }
    .cant-miss-pre {
        font-size: 2.8rem;
        transform: translate(13%, 50%);

    }

    .nao, .pode{
        display: none;
    }
    .nao-pode {
        display: block;
        font-size: 11rem;
        left: 50%;
        transform: translate(-50%, -235%) scaleY(0.48);
    }
    .cant-miss-post {
        font-size: clamp(1.5rem, 4vw, 3rem);
        transform: translate(-18%, 100%);

    }

    .cant-miss-sub {
        
        font-size: 1.2rem;
        margin-top: 100px;
    }

    .mapa {
        height: 440px;
        margin-top: 60px;
        margin-bottom: 60px;
    }

    .mapa img {
        height: 100%;
        width: auto;
        object-fit: contain;
    }

    .setores {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
        gap: 40px;
        padding: 0 80px;
        max-width: 1100px;
        margin: 0 auto 120px;
    }

    .central,
    .arquibancada {
        flex: 1;
        max-width: 480px;
    }

    .setores .btn-cta {
        flex-basis: 100%;
        width: fit-content;
        align-self: center;
        margin: 0 auto;
    }

    /* --- POWER UP --- */
    .powerup {
        clip-path: polygon(0 0%, 100% 0%, 100% 100%, 0 100%);
        padding: 200px 80px 100px 80px ;
    }

    .powerup-inner {
        max-width: 1200px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 80px;
        align-items: center;
    }

    .powerup-logo {
        grid-column: 1;
        grid-row: 1;
        justify-content: flex-start;
        align-items: center;
    }

    .powerup-logo img {
        width: 100%;
    }

    .powerup-content {
        grid-column: 2;
        grid-row: 1;
        gap: 24px;
    }

    .powerup-desc {
        text-align: center;
        font-size: 1.1rem;
        -webkit-text-stroke: 1px currentColor;
    }

    .powerup-item {
        padding: 8px 0;
    }

    .powerup-item-name,
    .powerup-item-price {
        font-size: 1.6rem;
    }

    .total {
        padding: 20px 0;
    }

    /* --- FAQ --- */
    .faq {
        display: flex;
        flex-direction: row;
        align-items: center;
        background-image: url(./assets/imagens/background-faq-desk.png);
        background-size: cover;
    }

    .faq-title {
        position: absolute;
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font-size: clamp(11rem, 10vw, 12rem);
        align-self: baseline;
        align-items: right;
        justify-content: center;
        z-index: 0;
        pointer-events: none;
    }

    .faq-inner {
        flex: 1;
        min-width: 0;
        max-width: none;
        padding: 0 60px 0 0;
    }

    .faq-list {
        margin-top: 150px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0 60px;
        padding: 16px 0;
        align-items: start;
        margin-left: 450px;
        margin-right: 10px;
        z-index: 10;
    }

    .faq-more {
        grid-column: 1 / -1;
        gap: 0 60px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        overflow: hidden;
        max-height: 0;
        transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 11;
    }

    .faq-more.is-open {
        max-height: 9999px;
        transition: max-height 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 10;
    }

    .faq-toggle-btn {
        grid-column: 1 / -1;
        font-size: 2rem;
    }

    .faq-toggle-icon {
        width: 60px;
        height: 50px;
    }

    .faq-item {
        break-inside: avoid;
    }
    .highlight-faq{
        font-size: 2rem;

    }
    .faq-question span {
        font-size: 1.0rem;
    }

    .faq-question {
        padding: 20px 0;
    }
    /* --- FOOTER --- */
    .footer {
        background-image: url(./assets/imagens/background-footer-desktop.png);
        height: auto;
        min-height: 60vh;
    }

    .footer-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 48px;
        padding: 56px 190px 48px;
    }

    /* Logo desktop centralizado no topo */
    .footer-logo-mobile  { display: none !important; order: unset; }
    .footer-logo-desktop {
        order: -1;
        display: block !important;
        width: 100%;
        margin-top: 100px;
        position: inherit;
    }

    /* Restaura wrappers em flex row */
    .footer-columns {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 60px;
        width: 100%;
    }

    .footer-col-left {
        display: flex;
        flex-direction: column;
        flex: 1;
        gap: 32px;
    }

    /* Reset order no desktop */
    .footer-nav    { order: unset; }
    .footer-social { order: unset; }
    .footer-col-right { order: unset; }

    /* Frase */
    .footer-quote {
        display: block;
        font-family: 'helvetica', sans-serif;
        font-size: clamp(0.9rem, 1.1vw, 1.1rem);
        color: var(--branco);
        line-height: 1.0;
        max-width: 420px;
    }

    .footer-nav {
        display: flex;
        flex-direction: row;
        grid-template-columns: auto auto;
        gap: 8px 40px;
    }

    .footer-nav-link:nth-child(odd),
    .footer-nav-link:nth-child(even) {
        text-align: left;
        color: #D2FF03;
    }

    .footer-social {
        flex-direction: row;
        gap: 16px;
    }

    /* Col direita: grade Instagram */
    .footer-col-right {
        display: flex;
        flex: 1;
        max-width: 480px;
        position: relative;
        overflow: hidden;
        /* altura aproximada de 2 linhas de posts (3×2 grid) */
        max-height: 340px;
        -webkit-mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
        mask-image: linear-gradient(to bottom, black 60%, transparent 100%);
    }

    .footer-instagram-grid {
        width: 100%;
    }

    .footer-copy {
        text-align: center;
        width: 100%;
        margin-bottom: 0;
    }
}

/* Mobile médio (max 480px) — ajustes finos */
@media (max-width: 480px) {

    .cant-miss-title {
        font-size: clamp(3.5rem, 22vw, 7rem);
    }

    .faq-question span {
        font-size: 0.9rem;
        line-height: 1.2;
    }

    .faq-icon {
        width: 28px;
        height: 28px;
    }

    .faq-question {
        padding: 16px 0;
        gap: 10px;
    }

    .faq-answer {
        padding: 0 0 16px 0;
    }

    .faq-answer p,
    .faq-answer ul,
    .faq-answer li {
        font-size: 0.82rem;
        line-height: 1.55;
    }
}
