:root {
    /* Paleta aproximada do PDF */
    --rosa: #ff3b98;
    --rosa-escuro: #e11f7c;
    --azul: #2b5dc9;
    --azul-escuro: #1b2c6b;
    --amarelo-claro: #ffeec0;
    --amarelo: #ffd461;
    --creme: #fff8df;
    --texto-escuro: #111827;
    --fundo-pagina: #fdf1ff;
}


* {
    box-sizing: border-box;
}

html{
    overflow-x: hidden;
}
body {
    margin: 0;
    font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: var(--fundo-pagina);
    color: var(--texto-escuro);
    overflow: hidden;
}


.wow{
    visibility: hidden;
}
.faixa-rosa-topo {
    background: #7C9EF3;
    min-height: 30vh;
    position: relative;
    /*border-bottom: 4px solid #000*/
}

.logo-topo {
    max-width: 100%;
    width: 100%;
    height: auto;
}

.banner-topo{
    max-width: 100%;
    width: 100%;
}

.decor {
    position: absolute;
    pointer-events: none;
}

.decor-top-left {
    top: 10%;
    left: 6%;
    width: 90px;
}

.decor-top-right {
    top: 12%;
    right: 8%;
    width: 80px;
}

p{
    margin-bottom: 0.7rem;
}

.faixa-azul-hero {
    background: #7C9EF3;
    padding: 3.5rem 1rem 4.5rem;
    color: #000;
    text-align: center;
    position: relative;
}

.hero-shape {
    position: absolute;
    opacity: 0.3;
    border-radius: 50%;
    filter: blur(2px);
}

/*.hero-shape-1 {*/
/*    width: 280px;*/
/*    height: 280px;*/
/*    top: -80px;*/
/*    left: -80px;*/
/*    background: radial-gradient(circle, #ffeec0 0, rgba(255, 238, 192, 0) 70%);*/
/*}*/

.hero-shape-2 {
    width: 260px;
    height: 260px;
    bottom: -80px;
    right: -90px;
    background: radial-gradient(circle, #ffb5e7 0, rgba(255, 181, 231, 0) 70%);
}

.hero-titulo {
    font-family: "Baloo 2", cursive;
    font-size: 2.4rem;
    line-height: 1.15;
    text-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
}

.hero-copy {
    margin-top: 1.6rem;
    font-size: 1rem;
}

.hero-copy p {
    margin-bottom: 1rem;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}



.hero-poster-centro {
    margin-top: 2.5rem;
    position: relative;
    display: inline-block;
}

.hero-poster-img {
    max-width: min(92vw, 480px);
    border-radius: 1.8rem;
    border: 6px solid #ffeec0;
    box-shadow: 0 16px 0 #e19b2b, 0 20px 45px rgba(0, 0, 0, 0.5);
    transform: rotate(-2deg);
}



.decor-hero-left {
    bottom: 10%;
    left: 4%;
    width: 120px;
    transform: rotate(-8deg);
}

.decor-hero-right {
    top: 18%;
    right: 5%;
    width: 110px;
    transform: rotate(6deg);
}



.faixa-amarela-programacao {
    background: var(--amarelo-claro);
    padding: 3.5rem 1rem 3.5rem;
}



.dia-header-bar {
    background: var(--rosa);
    color: #fff;
    padding: 0.6rem 1.2rem;
    display: inline-block;
    /*border-radius: 18px;*/
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.86rem;
    position: relative;
    margin-bottom: 2rem;
}

.dia-header-bar::before,
.dia-header-bar::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 5px solid #FFEEC0;
    background: #FFEEC0;
    transform: translateY(-50%);
}

.dia-header-bar::before {
    left: -10px;
}

.dia-header-bar::after {
    right: -10px;
}



.dia-container {
    margin-bottom: 4rem;
}



.tickets-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1.4rem;
    justify-content: center;
}


article{
    max-width: 260px;
    display: flex;
    flex-direction: column;
}
.ticket {
    position: relative;
    background: #7C9EF3;
    color: #000;
    padding: 1.2rem 1rem 1.8rem;
    max-width: 260px;
    text-align: center;
    font-size: 0.9rem;
    flex: 1; /* Faz a ticket crescer até o limite do artigo */
    display: flex;
    flex-direction: column;
    /* formato do ingresso */
    /*border-radius: 14px;*/
    /*box-shadow: 0 8px 0 #162b63, 0 12px 22px rgba(0, 0, 0, 0.35);*/
    overflow: hidden;
}

.ticket-header{
    position: relative;
    max-width: 260px;
    background: #394F99;
    color: #fff;
    padding: 0.7rem 1rem;
    margin-bottom:5px;
    min-height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ticket-header::before{
    content: '';
    position: absolute;
    height: 28px;
    width: 28px;
    background: var(--amarelo-claro);
    border-radius: 50%;
    left: -14px;
    bottom: calc(50% - 14px);
}

.ticket-header::after{
    content: '';
    position: absolute;
    height: 28px;
    width: 28px;
    background: var(--amarelo-claro);
    border-radius: 50%;
    right: -14px;
    bottom: calc(50% - 14px);
}

.ticket-header h3{
    margin-bottom: 0px;
}

.ticket::before,
.ticket::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 20px;
    height: 40px;
    background: var(--amarelo-claro);
    border-radius: 20px;
    transform: translateY(-50%);
}

.ticket::before {
    left: -10px;
}

.ticket::after {
    right: -10px;
}



.ticket-bottom {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 18px;
    background: radial-gradient(circle at 20px 27px, var(--amarelo-claro) 19px, transparent 11px) repeat-x;
    background-size: 55px 18px;
}



.ticket-inner {
    position: relative;
    padding-bottom: 0.6rem;
    border-bottom: 3px solid #0f214f;
    height: 100%;
}



.ticket-starburst {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -55%);
    width: 70px;
    height: 70px;
    background:
            conic-gradient(from 0deg, #ffecb8 0 10deg, transparent 10deg 20deg);
    border-radius: 50%;
    clip-path: polygon(50% 0%, 63% 18%, 82% 13%, 75% 32%, 95% 38%, 78% 50%, 95% 62%, 75% 68%, 82% 87%, 63% 82%, 50% 100%, 37% 82%, 18% 87%, 25% 68%, 5% 62%, 22% 50%, 5% 38%, 25% 32%, 18% 13%, 37% 18%);
    opacity: 0.9;
}



.ticket-title {
    font-family: "Anton", sans-serif;
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.6rem;
}


.ticket-text {
    font-size: 0.8rem;
    line-height: 1.25;
}

.ticket-text strong {
    text-transform: uppercase;
}

/* -------- RODAPÉ -------- */

.rodape {
    background: #111827;
    color: #e5e7eb;
    padding: 1rem 1rem 1.2rem;
    font-size: 0.8rem;
}

.pequeno {
    font-size: 0.8rem;
}

/* -------- RESPONSIVO -------- */

@media (max-width: 768px) {
    .faixa-rosa-topo {
        min-height: 24vh;
    }

    .hero-titulo {
        font-size: 1.2rem;
    }

    .ticket-title {
        font-size: 1.15rem;
    }
    .ticket-header {
        min-height: 66px;
    }
    .hero-poster-img {
        max-width: min(92vw, 360px);
        transform: rotate(-1deg);
    }

    .decor-top-left,
    .decor-top-right,
    .decor-hero-left,
    .decor-hero-right {
        display: none;
    }

    .hero-copy p{
        font-size: 0.8rem;
    }


}


.bg-faixa{
    background: var(--amarelo-claro);
}
.faixa {
    position: relative;
    width: 110vw;                 /* passa da tela pra garantir cobertura */
    height: 45px;                 /* faixa mais fina */
    overflow: hidden;
    transform-origin: center;
    left: -10px;
    /* bordas pontilhadas em cima e embaixo */
    border-top: 4px dashed rgba(0,0,0,0.7);
    border-bottom: 4px dashed rgba(0,0,0,0.7);
    box-sizing: border-box;
}

/* --- FAIXA SUPERIOR (BEGE) --- */
.faixa-topo {
    background: #f5f1cf;
    transform: rotate(-4deg) translateY(10px);
}

.faixa-topo .faixa-content {
    background-image: url("img/faixa-bege.png");  /* sua imagem bege */
    animation: slide-right 30s linear infinite;
}

/* --- FAIXA INFERIOR (ROSA) --- */
.faixa-bottom {
    background: #e5007d;
    transform: rotate(4deg) translateY(-20px);
}

.faixa-bottom .faixa-content {
    background-image: url("img/faixa-rosa.png");  /* sua imagem rosa */
    animation: slide-left 30s linear infinite;
}

/* --- CONTEÚDO DA FAIXA --- */
.faixa-content {
    position: absolute;
    inset: 0;
    background-repeat: repeat-x;
    background-size: auto 100%;    /* garante altura cheia da faixa */
    background-position: 0 0;
}

/* --- ANIMAÇÕES --- */

/* andando para a direita */
@keyframes slide-right {
    0%   { background-position: 0 0; }
    100% { background-position: 100% 0; }
}

/* andando para a esquerda */
@keyframes slide-left {
    0%   { background-position: 0 0; }
    100% { background-position: -100% 0; }
}