* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
    line-height: 1.5;
    background-color: #0a0c10;
    color: #fff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
}

/* SECTIONS */
section {
    position: relative;
    padding: 100px 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: scroll;
    border-bottom: 2px solid #4e4c4b;
}

section::before {
    display: none;
}

.section-content {
    position: relative;
    z-index: 2;
}

/* TÍTULOS COM EFEITO GLASSMORPH */
h1, h2, h3 {
    font-weight: 700;
    margin-bottom: 20px;
    transition: all 0.4s ease;
    display: inline-block;
    width: auto;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.6) 50%, #1e1410 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 20px rgba(255,215,0,0.3);
    letter-spacing: -0.01em;
}

h1 { font-size: 3.2rem; letter-spacing: -0.02em; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.8rem; }

/* HOVER DOS TÍTULOS */
h1:hover, h2:hover, h3:hover {
    background: linear-gradient(135deg, #ffffff 0%, #FFD966 60%, #FFA500 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transform: scale(1.02);
    text-shadow: 0 0 30px rgba(255,215,0,0.8);
    cursor: pointer;
}

/* EFEITO TAP NO MOBILE */
@media (max-width: 768px) {
    h1:active, h2:active, h3:active {
        transform: scale(0.96);
        transition: transform 0.1s ease;
    }
}

.titulo-destaque {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #FFD966, #ffffff, #FFE49E);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0 0 15px rgba(255,217,0,0.4);
}

.subtitulo {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-align: center;
    transition: all 0.3s ease;
    opacity: 0.7;
    color: rgba(255, 255, 255, 0.7);
    text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.subtitulo:hover {
    opacity: 1;
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255,255,255,0.8);
    cursor: pointer;
    transform: scale(1.02);
}

.subtitulo:active {
    transform: scale(0.98);
}

p {
    margin-bottom: 16px;
    font-size: 1.05rem;
    color: #f5f5f5;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.texto-centralizado { text-align: center; }
.texto-justificado { text-align: justify; }
.text-left { text-align: left; }

/* TEXTOS ESPECÍFICOS DAS SEÇÕES */
.texto-justificado2, .texto-justificado3 {
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    font-size: 1.4rem;
    max-width: 620px;
}

.subtitulo2, .subtitulo3 {
    font-family: Arial, Helvetica, sans-serif;
    text-align: left;
    font-size: 1.8rem;
    font-weight: 600;
    background: linear-gradient(135deg, #FFD966, #ffffff);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* LAYOUT 2 COLUNAS */
.two-columns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    justify-content: space-between;
}

.col-text {
    flex: 1.2;
    min-width: 260px;
}

.col-image {
    flex: 0.9;
    min-width: 250px;
}

.col-image img {
    width: 100%;
    border-radius: 28px;
    box-shadow: 0 20px 35px -12px rgba(0,0,0,0.5);
    display: block;
}

/* ============================================ */
/* BOTÕES */
/* ============================================ */
.botoes-ingressos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
}

.btn-ingresso {
    flex: 1;
    min-width: 220px;
    text-align: center;
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255,215,0,0.6);
    border-radius: 60px;
    padding: 18px 24px;
    font-size: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: 0.25s ease;
    color: #ffd966;
    background: linear-gradient(135deg, #1e2a3a, #0f1722);
}

.btn-ingresso:hover {
    transform: scale(1.02);
    background: #ffb347;
    color: #0a0c10;
    border-color: #ffb347;
    box-shadow: 0 10px 20px -5px rgba(0,0,0,0.5);
}

.btn-comum {
    border-color: #c6d3c6;
    color: #b9f6ca;
}

/* ============================================ */
/* BOTÃO VIP - EFEITO ESTRELA BRILHANTE */
/* ============================================ */
.btn-vip {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease !important;
    border-color: #FFD966 !important;
    background: linear-gradient(135deg, #2a1e2c, #1a1a2e) !important;
    cursor: pointer;
    z-index: 1;
    animation: brilhoEstrela 2s infinite !important;
}

/* ANIMAÇÃO DE BRILHO COMO ESTRELA (PULSANDO) */
@keyframes brilhoEstrela {
    0% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.2), 0 0 20px rgba(255, 215, 0, 0.1);
    }
    25% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2), 0 0 60px rgba(255, 215, 0, 0.1);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6), 0 0 80px rgba(255, 215, 0, 0.3), 0 0 120px rgba(255, 215, 0, 0.15);
    }
    75% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.4), 0 0 40px rgba(255, 215, 0, 0.2), 0 0 60px rgba(255, 215, 0, 0.1);
    }
    100% {
        box-shadow: 0 0 10px rgba(255, 215, 0, 0.2), 0 0 20px rgba(255, 215, 0, 0.1);
    }
}

/* EFEITO HOVER - ZOOM + BRILHO FORTE */
.btn-vip:hover {
    transform: scale(1.12) !important;
    background: linear-gradient(135deg, #FFD966, #FFA500) !important;
    color: #0a0c10 !important;
    border-color: #ffffff !important;
    box-shadow:
        0 0 40px rgba(255, 215, 0, 0.8),
        0 0 80px rgba(255, 215, 0, 0.5),
        0 0 120px rgba(255, 215, 0, 0.3),
        0 0 160px rgba(255, 215, 0, 0.15) !important;
    animation: none !important;
}

/* EFEITO CLICK - ZOOM OUT */
.btn-vip:active {
    transform: scale(0.92) !important;
    transition: transform 0.08s ease !important;
    box-shadow:
        0 0 60px rgba(255, 215, 0, 0.9),
        0 0 120px rgba(255, 215, 0, 0.6),
        0 0 180px rgba(255, 215, 0, 0.3) !important;
}

/* ANIMAÇÃO DE PARTÍCULAS/ESTRELAS (fundo brilhante) */
.btn-vip::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.15), transparent 60%);
    opacity: 0.5;
    pointer-events: none;
    z-index: 0;
    animation: girarBrilho 4s linear infinite;
}

@keyframes girarBrilho {
    0% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.2); }
    100% { transform: rotate(360deg) scale(1); }
}

/* SEGUNDA CAMADA DE BRILHO (mais intensa no hover) */
.btn-vip::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.6), transparent 70%);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.4s ease;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}

.btn-vip:hover::after {
    width: 300px;
    height: 300px;
    opacity: 1;
}

.btn-vip:active::after {
    width: 400px;
    height: 400px;
    opacity: 0.8;
    transition: width 0.15s ease, height 0.15s ease, opacity 0.15s ease;
}

/* COR DO TEXTO DO VIP */
.btn-vip .gold-text {
    color: #FFD966;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.btn-vip:hover .gold-text {
    color: #0a0c10 !important;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

/* EFEITO DE ONDA EXPANSIVA NO CLICK */
.btn-vip .onda-click {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.4);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    pointer-events: none;
    z-index: 1;
    opacity: 0;
}

.btn-vip:active .onda-click {
    width: 350px;
    height: 350px;
    opacity: 1;
}

/* TABELA */
.tabela-beneficios {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    border-radius: 32px;
    padding: 20px;
    overflow-x: auto;
    margin-top: 20px;
    border: 1px solid rgba(255,215,0,0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
    min-width: 500px;
}

th, td {
    padding: 16px 12px;
    text-align: left;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

th {
    font-weight: 700;
    font-size: 1.1rem;
    color: #dddad0;
}

td:first-child, th:first-child { font-weight: 600; }
.sim { color: #8bc34a; font-weight: bold; }
.nao { color: #ff8a7a; }

/* BACKGROUNDS DAS SEÇÕES */
.bg-1, .bg-2, .bg-3, .bg-quadro, .bg-lid {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    width: 100%;
}

.bg-1 {
    background-image: url('../images/bg00.jpg');
    background-position: center 30%;
    min-height: 95vh;
    display: flex;
    align-items: flex-end;
}

.bg-2 {
    background-image: url('../images/bg_2.png');
    min-height: 1550px;
}

.bg-3 {
    background-image: url('../images/bg_3.png');
    min-height: 1750px;
}

.bg-quadro {
    background-image: url('../images/bg.png');
    min-height: auto;
}

.bg-lid {
    background-image: url('../images/bg_lid0.png');
    min-height: 2950px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 12px; }
::-webkit-scrollbar-track { background: #0a0c10; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #1e1410; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #3a2a22; }

/* ANIMAÇÕES SCROLL */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.7s ease-out;
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.7s ease-out;
}
.reveal.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* ============================================ */
/* RESPONSIVIDADE TABLET (991px) */
/* ============================================ */
@media (max-width: 991px) {
    .container { padding: 0 24px; }
    section { padding: 60px 0; }
    h1 { font-size: 2.6rem; }
    h2 { font-size: 2.2rem; }
    .two-columns { flex-direction: column; gap: 32px; }
    .col-text, .col-image { flex: auto; width: 100%; }
    .col-image img { max-width: 80%; margin: 0 auto; }
    .btn-ingresso { font-size: 1.2rem; padding: 14px 20px; }
    .texto-justificado2, .texto-justificado3 { width: 100%; text-align: center; }
    .subtitulo2, .subtitulo3 { text-align: center; }

    .tabela-beneficios { padding: 15px; }
    table { font-size: 0.85rem; min-width: 400px; }
    th, td { padding: 12px 8px; font-size: 0.85rem; }
    th { font-size: 0.9rem; }
}

/* ============================================ */
/* RESPONSIVIDADE MOBILE (661px) */
/* ============================================ */
@media (max-width: 661px) {
    .container { padding: 0 16px; }
    section { padding: 40px 0; }
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.4rem; }
    .titulo-destaque { font-size: 1.4rem; }
    .subtitulo { font-size: 1rem; }
    p, .texto-justificado { font-size: 0.9rem; }
    .botoes-ingressos { flex-direction: column; gap: 16px; }
    .btn-ingresso { width: 100%; font-size: 1rem; padding: 12px 16px; }
    .col-image img { max-width: 100%; border-radius: 20px; }
    .texto-justificado2, .texto-justificado3 { font-size: 0.9rem; padding: 0 10px; }
    .subtitulo, .subtitulo2, .subtitulo3 { font-size: 1rem; }

    .tabela-beneficios { padding: 10px; border-radius: 20px; }
    table { font-size: 0.7rem; min-width: 320px; }
    th, td { padding: 8px 6px; font-size: 0.7rem; }
    th { font-size: 0.75rem; }
    .sim, .nao { font-size: 0.7rem; }

    /* AJUSTE VIP NO MOBILE */
    .btn-vip {
        animation: brilhoEstrela 2.5s infinite !important;
    }

    .btn-vip:hover {
        transform: scale(1.05) !important;
    }

    .btn-vip:active {
        transform: scale(0.95) !important;
    }
}

/* TELAS GRANDES 4K */
@media (min-width: 1921px) {
    section { background-size: cover; background-position: center; }
}

/* UTILITÁRIOS */
.highlight { color: #ffd966; }
.mt-4 { margin-top: 20px; }
.mb-2 { margin-bottom: 12px; }
hr { margin: 30px 0; border-color: rgba(255,255,255,0.2); }
footer {
    background-color: #05060a;
    text-align: center;
    padding: 32px 20px;
    font-size: 0.85rem;
    color: #aaa;
}
a { text-decoration: none; }