:root {
    --background: #000000;
    --foreground: hsl(0, 0%, 98%);

    /* PALETA UNIFICADA — TUDO LARANJA */
    --primary: #F67600;             /* laranja principal */
    --primary-foreground: #ffffff;
    --accent: #F67600;              /* mesmo laranja (substitui cyan) */
    --accent-deep: #c95d00;
    --muted-foreground: rgba(255, 255, 255, 0.65);
    --border: rgba(255, 255, 255, 0.1);

    /* Variáveis usadas pelas seções de Plan/Tickets/Why/Modais */
    --black: #000000;
    --black-card: #111111;
    --black-card-2: #161616;
    --black-line: #1f1f1f;
    --white: #ffffff;
    --white-soft: rgba(255, 255, 255, 0.72);
    --white-mute: rgba(255, 255, 255, 0.48);
    --white-line: rgba(255, 255, 255, 0.08);
    --orange: #F67600;
    --orange-deep: #c95d00;
    --orange-glow: rgba(246, 118, 0, 0.45);
    --orange-soft: rgba(246, 118, 0, 0.12);

    --font: 'Space Grotesk', sans-serif;

    /* TIPOGRAFIA PADRONIZADA */
    --fs-h1: 2.5rem;     /* desktop */
    --fs-h2: 1.8rem;
    --fs-p:  1.5rem;
    --fs-p-sm: 1rem;

    --container: 1240px;
    --radius: 18px;
    --radius-sm: 10px;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

@media (max-width: 768px) {
    :root {
        --fs-h1: 2rem;     /* mobile */
        --fs-h2: 1.5rem;
        --fs-p:  1rem;
        --fs-p-sm: 0.8rem;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Scroll suave para âncoras (#ingressos, etc.) */
html {
    scroll-behavior: smooth;
}

/* Offset para o header fixo não tampar o título da seção alvo */
section[id] {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: var(--background);
    color: var(--foreground);
    overflow-x: hidden;
}

.font-heading { font-family: 'Space Grotesk', sans-serif; }

/* Top progress line */
.top-line {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary), var(--accent), var(--primary));
    z-index: 60;
}

/* Header */
/* Header da página (filho direto do body) — não afeta <header> dentro de cards */
body > header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
}

.top-banner {
    background: rgba(246, 118, 0, 0.95);
    backdrop-filter: blur(8px);
    padding: 8px 16px;
    text-align: center;
}

.top-banner p {
    color: var(--primary-foreground);
    font-size: 14px;
    font-weight: 500;
}

.top-banner strong {
    font-weight: 700;
}

nav {
    background: transparent;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}

.logo-nav {
    display: flex;
    align-items: center;
}

.logo-nav img {
    height: 28px;
}

.nav-links {
    display: none;
    gap: 2px;
    align-items: center;
}

@media (min-width: 1024px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    background: none;
    border: none;
    color: var(--muted-foreground);
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 9999px;
    cursor: pointer;
    transition: color 0.3s;
}

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 12px;
    padding: 8px 20px;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: box-shadow 0.3s;
    text-decoration: none;
}

.btn-primary:hover {
    box-shadow: 0 0 24px rgba(246, 118, 0, 0.3);
}

.btn-outline {
    display: none;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--muted-foreground);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 8px 16px;
    border-radius: 9999px;
    background: transparent;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

@media (min-width: 1024px) {
    .btn-outline {
        display: inline-flex;
    }
}

.btn-outline:hover {
    color: var(--foreground);
    border-color: rgba(255, 255, 255, 0.3);
}

.menu-toggle {
    display: flex;
    padding: 8px;
    border-radius: 9999px;
    background: none;
    border: none;
    color: var(--muted-foreground);
    cursor: pointer;
}

@media (min-width: 1024px) {
    .menu-toggle {
        display: none;
    }
}

/* ============================================================
   HEADER MOBILE/TABLET (≤1023px)
   - Botão "Garantir meu ingresso" à ESQUERDA
   - Logo no CENTRO
   - Hambúrguer à DIREITA
============================================================ */
@media (max-width: 1023px) {
    .nav-container {
        position: relative;
        justify-content: space-between;
    }

    /* Logo: centralizada absolutamente */
    .logo-nav {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        order: 2;
        pointer-events: none;
    }

    /* Botão laranja: ESQUERDA */
    .nav-actions {
        order: 1;
        gap: 0;
    }

    .btn-primary {
        order: 1;
    }

    /* Hambúrguer: DIREITA — sai do .nav-actions visualmente */
    .menu-toggle {
        order: 3;
        position: absolute;
        right: 16px;
        top: 50%;
        transform: translateY(-50%);
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    padding-top: 30px;
    background: #000000;
}

@media (min-width: 640px) {
    .hero { padding-top: 50px; }
}

@media (min-width: 768px) {
    .hero { padding-top: 50px; }
}

/* Grid pattern */
.grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.2;
}

/* Glow blobs */
.glow-cyan {
    position: absolute;
    top: 0;
    left: 0;
    width: 600px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(246, 118, 0, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.glow-yellow-soft {
    position: absolute;
    bottom: 25%;
    left: 33%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(246, 118, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.vertical-line {
    position: absolute;
    top: 25%;
    left: 0;
    width: 1px;
    height: 192px;
    background: linear-gradient(to bottom, transparent, rgba(246, 118, 0, 0.3), transparent);
}

/* Hero container */
.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 16px;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
    min-height: calc(100vh - 56px);
}

@media (min-width: 640px) {
    .hero-container {
        padding: 40px 24px;
        gap: 40px;
    }
}

@media (min-width: 1024px) {
    .hero-container {
        flex-direction: row;
        gap: 56px;
        padding: 0 24px;
    }
}

@media (min-width: 1280px) {
    .hero-container {
        gap: 80px;
    }
}

/* Hero left content */
.hero-left {
    flex: 1.15;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 580px;
}

@media (min-width: 1024px) {
    .hero-left {
        align-items: flex-start;
        text-align: left;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 9999px;
    background: rgba(246, 118, 0, 0.1);
    border: 1px solid rgba(246, 118, 0, 0.2);
    padding: 6px 14px;
    margin-bottom: 20px;
}

.badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.badge-text {
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.logo-whatsup {
    width: 100px;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 60px rgba(246, 118, 0, 0.2));
}

@media (min-width: 640px) { .logo-whatsup { width: 100px; } }
@media (min-width: 768px) { .logo-whatsup { width: 100px; } }
@media (min-width: 1024px) {
    .logo-whatsup {
        width: 100px;
        margin-bottom: 32px;
    }
}

h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: var(--fs-h1);
    line-height: 1.08;
    margin-bottom: 16px;
}

.text-gradient-cyan {
    background: linear-gradient(135deg, #F67600, #ffa54a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.text-gradient-yellow {
    background: linear-gradient(135deg, #F67600, #ffa54a);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.hero-description {
    font-size: var(--fs-p);
    color: var(--muted-foreground);
    max-width: 600px;
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 1.3rem;
}

/* Info cards */
.info-stack {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    width: 100%;
    max-width: 460px;
}

@media (min-width: 640px) {
    .info-stack {
        gap: 10px;
        margin-bottom: 28px;
    }
}

.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 10px 12px;
}

@media (min-width: 640px) {
    .glass {
        padding: 12px 16px;
    }
}

.glass-strong {
    background: rgba(246, 118, 0, 0.08);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(246, 118, 0, 0.35);
    border-radius: 14px;
    padding: 12px 18px;
    box-shadow: 0 0 30px rgba(246, 118, 0, 0.1);
}

@media (min-width: 640px) {
    .glass-strong {
        padding: 14px 22px;
    }
}

.promoted-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 6px 12px;
}

@media (min-width: 1024px) {
    .promoted-row {
        justify-content: flex-start;
    }
}

.promoted-label {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

@media (min-width: 640px) {
    .promoted-label { font-size: 12px; }
}

.promoted-row img {
    height: 20px;
}

@media (min-width: 640px) {
    .promoted-row img { height: 24px; }
}

.meta-img {
    border-radius: 4px;
}

@media (min-width: 640px) {
    .meta-img { height: 28px !important; }
}

.promoted-and {
    color: rgba(220, 220, 220, 0.6);
    font-size: 12px;
}

@media (min-width: 640px) {
    .promoted-and { font-size: 14px; }
}

/* Date and location row */
.date-location-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

@media (min-width: 640px) {
    .date-location-row {
        flex-direction: row;
        align-items: stretch;
    }
}

.date-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .date-pill {
        justify-content: flex-start;
    }
}

.date-text {
    color: var(--primary);
    font-size: 16px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (min-width: 640px) {
    .date-text { font-size: 18px; }
}

@media (min-width: 768px) {
    .date-text { font-size: 20px; }
}

.location-pill {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

@media (min-width: 1024px) {
    .location-pill {
        justify-content: flex-start;
    }
}

.location-text {
    font-size: 14px;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .location-text { font-size: 16px; }
}

@media (min-width: 768px) {
    .location-text { font-size: 18px; }
}

.location-city {
    color: var(--accent);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.location-place {
    color: var(--muted-foreground);
    margin-left: 6px;
}

.icon-primary {
    width: 18px;
    height: 18px;
    color: var(--primary);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .icon-primary {
        width: 20px;
        height: 20px;
    }
}

.icon-accent {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

@media (min-width: 640px) {
    .icon-accent {
        width: 20px;
        height: 20px;
    }
}

/* CTA */
.cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

@media (min-width: 640px) {
    .cta-wrapper {
        gap: 20px;
        margin-bottom: 32px;
    }
}

@media (min-width: 1024px) {
    .cta-wrapper {
        align-items: flex-start;
    }
}

.cta-ring {
    box-shadow: 0 0 0 4px rgba(246, 118, 0, 0.1);
    transition: all 0.3s ease;
}

.cta-ring:hover {
    box-shadow: 0 0 0 6px rgba(246, 118, 0, 0.2), 0 0 30px rgba(246, 118, 0, 0.4);
    transform: scale(1.05);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: var(--primary-foreground);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: 18px;
    padding: 20px 44px;
    border-radius: 9999px;
    text-decoration: none;
    transition: all 0.3s;
    letter-spacing: 0.01em;
}

@media (min-width: 640px) {
    .cta-button {
        gap: 14px;
        font-size: 20px;
        padding: 22px 52px;
    }
}

@media (min-width: 768px) {
    .cta-button {
        font-size: 22px;
        padding: 24px 60px;
    }
}

.cta-button:hover .cta-arrow {
    transform: translateX(4px);
}

.cta-arrow {
    width: 22px;
    height: 22px;
    transition: transform 0.3s;
}

.cta-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    color: var(--muted-foreground);
    letter-spacing: 0.02em;
}

@media (min-width: 640px) {
    .cta-info {
        flex-direction: row;
        gap: 10px;
        font-size: 12px;
    }
}

.lote-status {
    display: flex;
    align-items: center;
    gap: 6px;
}

.pulse-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.lote-text {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
}

.separator {
    color: rgba(220, 220, 220, 0.4);
    display: none;
}

@media (min-width: 640px) {
    .separator { display: inline; }
}

.vagas-strong {
    color: var(--foreground);
    font-weight: 600;
}

/* Hero right - images */
.hero-right {
    flex: 1;
    position: relative;
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
}

@media (min-width: 640px) { .hero-right { max-width: 448px; } }
@media (min-width: 768px) { .hero-right { max-width: 512px; } }
@media (min-width: 1024px) {
    .hero-right {
        max-width: 512px;
        margin: 0;
    }
}
@media (min-width: 1280px) { .hero-right { max-width: 576px; } }

.yellow-shapes {
    position: absolute;
    inset: -12px;
}

@media (min-width: 640px) {
    .yellow-shapes { inset: -16px; }
}

@media (min-width: 768px) {
    .yellow-shapes { inset: -20px; }
}

.yellow-shape {
    position: absolute;
    border-radius: 16px;
}

.shape-1 {
    top: 0;
    right: 0;
    width: 70%;
    height: 44%;
    background: rgba(246, 118, 0, 0.9);
}

.shape-2 {
    top: 36%;
    right: 8%;
    width: 58%;
    height: 34%;
    background: rgba(246, 118, 0, 0.8);
}

.shape-3 {
    bottom: 0;
    right: 2%;
    width: 50%;
    height: 34%;
    background: rgba(246, 118, 0, 0.7);
}

.image-grid {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    padding: 8px;
}

@media (min-width: 640px) {
    .image-grid {
        gap: 10px;
        padding: 12px;
    }
}

.image-grid > div {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 640px) {
    .image-grid > div { border-radius: 12px; }
}

.img-full {
    grid-column: span 2;
}

.img-full img {
    width: 100%;
    height: 144px;
    object-fit: cover;
    object-position: center;
    display: block;
}

@media (min-width: 640px) { .img-full img { height: 192px; } }
@media (min-width: 768px) { .img-full img { height: 240px; } }

.img-half img {
    width: 100%;
    height: 112px;
    object-fit: cover;
    display: block;
}

@media (min-width: 640px) { .img-half img { height: 160px; } }
@media (min-width: 768px) { .img-half img { height: 192px; } }

.img-half-top img {
    object-position: top;
}

/* ============================================== */
/* SEGUNDA DOBRA - VÍDEO                          */
/* ============================================== */

.video-section {
    position: relative;
    overflow: visible;
    padding: 40px 0 64px;
    background: #000000;
}

@media (min-width: 768px) {
    .video-section {
        padding: 64px 0 96px;
    }
}

.video-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    position: relative;
    z-index: 10;
}

@media (min-width: 640px) {
    .video-container { padding: 0 24px; }
}

/* Heading */
.video-heading {
    text-align: center;
    padding-bottom: 32px;
}

@media (min-width: 768px) {
    .video-heading { padding-bottom: 48px; }
}

.video-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--foreground);
    font-size: var(--fs-h2);
    line-height: 1.1;
}

.video-subtitle {
    margin-top: 14px;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.04em;
    font-size: 16px;
}

@media (min-width: 640px) { .video-subtitle { font-size: 20px; margin-top: 16px; } }
@media (min-width: 768px) { .video-subtitle { font-size: 24px; } }

.kw-yellow { color: var(--primary); }
.kw-cyan   { color: var(--accent); }
.kw-divider {
    color: rgba(220, 220, 220, 0.4);
    margin: 0 8px;
    font-weight: 300;
}

@media (min-width: 768px) {
    .kw-divider { margin: 0 12px; }
}

/* ===== Wrapper que vira mini-player ===== */
.video-player-wrapper {
    max-width: 960px;
    margin: 0 auto;
    transition:
        position 0s,
        top 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        right 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s ease,
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Frame do player com a borda amarela e glow */
.video-player-frame {
    position: relative;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(246, 118, 0, 0.3);
    box-shadow: 0 0 80px rgba(246, 118, 0, 0.25);
    background: #000000;
}

@media (min-width: 768px) {
    .video-player-frame {
        border-radius: 24px;
    }
}

/* Slot onde o VTurb vai entrar */
.vturb-slot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

/* Garante que iframes/videos do VTurb preencham o slot */
.vturb-slot iframe,
.vturb-slot video,
.vturb-slot > div {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    border: none !important;
}

/* Placeholder visual - REMOVER quando colar o VTurb */
.vturb-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 500;
    background: linear-gradient(135deg, #0a0a0a, #050505);
}

.vturb-placeholder svg {
    color: rgba(246, 118, 0, 0.4);
}

/* Botão "Ativar som" */
.video-sound-btn {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 9999px;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(6px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--foreground);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 12px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
    transition: background 0.2s;
}

@media (min-width: 640px) {
    .video-sound-btn {
        bottom: 16px;
        right: 16px;
        padding: 8px 16px;
        font-size: 14px;
        gap: 8px;
    }
}

.video-sound-btn:hover {
    background: rgba(0, 0, 0, 0.95);
}

/* Texto "Ativar som" some no mini-player */
.video-player-wrapper.is-mini .video-sound-btn span {
    display: none;
}

.video-player-wrapper.is-mini .video-sound-btn {
    bottom: 8px;
    right: 8px;
    padding: 6px;
}

/* Botão de fechar - oculto por padrão, aparece no mini */
.mini-close-btn {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 21;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--foreground);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    transition: background 0.2s;
}

.mini-close-btn:hover {
    background: rgba(0, 0, 0, 1);
    border-color: rgba(255, 255, 255, 0.4);
}

.video-player-wrapper.is-mini .mini-close-btn {
    display: flex;
}

/* Sentinela invisível usada pelo IntersectionObserver */
.video-sentinel {
    width: 100%;
    height: 1px;
    pointer-events: none;
}

/* ============================================== */
/* MINI PLAYER - quando rola para fora            */
/* ============================================== */
.video-player-wrapper.is-mini {
    position: fixed;
    top: auto;
    bottom: 20px;
    right: 20px;
    width: 320px;
    max-width: 90vw;
    z-index: 9999;
    margin: 0;
    animation: slideInMini 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 640px) {
    .video-player-wrapper.is-mini {
        width: 240px;
        bottom: 16px;
        right: 16px;
    }
}

.video-player-wrapper.is-mini .video-player-frame {
    border-radius: 12px;
    border-color: rgba(246, 118, 0, 0.5);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.6),
        0 0 40px rgba(246, 118, 0, 0.2);
}

@keyframes slideInMini {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Estado fechado */
.video-player-wrapper.is-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateY(20px) scale(0.9);
}

/* ============================================== */
/* TERCEIRA DOBRA - SOBRE                         */
/* ============================================== */

.about-section {
    position: relative;
    overflow: hidden;
    padding: 48px 0 80px;
    background-color: rgb(9, 13, 21);
}

@media (min-width: 768px) {
    .about-section {
        padding: 80px 0 96px;
    }
}

/* Forma decorativa amarela bem sutil no canto direito */
.about-shape {
    position: absolute;
    right: -80px;
    top: 80px;
    width: 320px;
    height: 320px;
    opacity: 0.03;
    transform: rotate(0.68deg);
    pointer-events: none;
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 10;
}

/* Heading */
.about-heading {
    max-width: 768px;
    margin: 0 auto 48px;
    text-align: center;
}

@media (min-width: 768px) {
    .about-heading {
        margin: 0 auto 64px;
    }
}

.about-title {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: var(--foreground);
    font-size: var(--fs-h2);
    line-height: 1.15;
}

/* Bloco de parágrafos */
.about-text {
    max-width: 672px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.about-text p {
    color: var(--muted-foreground);
    font-family: 'Space Grotesk', sans-serif;
    font-size: var(--fs-p);
    line-height: 1.7;
    text-align: center;
}

.about-text strong {
    color: var(--muted-foreground);
    font-weight: 700;
}

/* CTA */
.about-cta-wrapper {
    text-align: center;
    margin-top: 56px;
}

@media (min-width: 768px) {
    .about-cta-wrapper {
        margin-top: 64px;
    }
}
/* ============================================================
   SEÇÃO — NETWORKING
============================================================ */
.networking-section {
  background: #0a0604;
  padding: 100px 20px;
  overflow-x: hidden;
}

.networking-inner {
  display: flex;
  align-items: center;
  gap: 80px;
  max-width: 1280px;
  margin: 0 auto;
}

/* ============================
   GALERIA (DESKTOP - 2 COLUNAS VERTICAIS)
============================ */
.net-gallery {
  flex: 1;
  display: flex;
  gap: 20px;
  height: 580px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 12%, black 88%, transparent);
}

.net-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.net-track {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.net-track--up {
  animation: net-scroll-y 25s linear infinite;
}

.net-track--down {
  animation: net-scroll-y-reverse 25s linear infinite;
}

.net-track:hover {
  animation-play-state: paused;
}

@keyframes net-scroll-y {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes net-scroll-y-reverse {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

@keyframes net-scroll-x {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes net-scroll-x-reverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.net-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0;
}

/* ============================
   TEXTO (LADO DIREITO)
============================ */
.networking-text {
  flex: 1;
  color: #fff;
}

.networking-text .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fe7413;
  margin-bottom: 20px;
}

.networking-text .eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: #fe7413;
  border-radius: 2px;
}

.networking-text p {
  font-size: 16px;
  color: #9a9a9a;
  line-height: 1.8;
  margin-bottom: 32px;
}

.networking-text h2 {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

/* ============================
   BOTÃO CTA VERDE
============================ */
.btn-networking {
  display: inline-block;
  background: linear-gradient(135deg, #2fd64d 0%, #1fb83a 100%);
  color: #fff;
  border: none;
  padding: 18px 36px;
  border-radius: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 8px 24px rgba(47, 214, 77, 0.35),
    0 0 0 1px rgba(47, 214, 77, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-networking::after {
  content: "";
  position: absolute;
  top: 0;
  right: 100%;
  width: 60px;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: skewX(-20deg);
  animation: shimmer 3s infinite;
}

.btn-networking:hover {
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(47, 214, 77, 0.45),
    0 0 0 1px rgba(47, 214, 77, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

/* Animação do brilho do botão */
@keyframes shimmer {
  0%   { right: 100%; }
  100% { right: -20%; }
}

/* ============================================================
   RESPONSIVO — MOBILE: vira carrossel horizontal
============================================================ */
@media (max-width: 768px) {
  .networking-section {
    padding: 60px 20px;
  }

  .networking-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }

  .net-gallery {
    width: 100%;
    height: auto;
    flex-direction: column;
    gap: 12px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  }

  .net-col {
    width: 100%;
    flex: none;
    overflow: hidden;
  }

  .net-track {
    flex-direction: row;
    width: max-content;
    gap: 12px;
  }

  .net-track--up {
    animation: net-scroll-x 25s linear infinite;
  }

  .net-track--down {
    animation: net-scroll-x-reverse 25s linear infinite;
  }

  .net-img {
    width: 180px;
    height: 130px;
    object-fit: cover;
    flex-shrink: 0;
    border-radius: 12px;
  }

  .networking-text {
    padding: 0 28px;
    text-align: center;
  }

  .networking-text .eyebrow {
    justify-content: center;
  }

  .networking-text p {
    font-size: 20px;
    line-height: 1.55;
  }

  .networking-text h2 {
    font-size: 28px;
    line-height: 1.25;
  }
}
/* ============================================================
   HELPERS (.container, em)
============================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

em {
  font-style: normal;
  color: var(--orange);
  font-weight: 600;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  color: var(--orange);
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--orange-soft);
  border-radius: 999px;
  background: var(--orange-soft);
}

/* Botão genérico (usado em vários lugares) */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  padding: 16px 32px;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  font-family: var(--font);
}

/* ============================================================
   DOBRA 2 — PLANO
============================================================ */
.plan {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.plan-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse, var(--orange-glow) 0%, transparent 70%);
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
}
.plan-header {
  max-width: 880px;
  margin: 0 auto 70px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.plan-h2 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.25;
}
.plan-p {
  font-size: 1.05rem;
  color: var(--white-soft);
  letter-spacing: 0.05em;
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 900px) {
  .plan-grid { grid-template-columns: 1fr; }
  .plan { padding: 80px 0; }
}

.plan-card {
  position: relative;
  padding: 40px 32px;
  background: linear-gradient(180deg, var(--black-card) 0%, var(--black-card-2) 100%);
  border: 1px solid var(--black-line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.5s var(--ease);
  overflow: hidden;
}
.plan-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.plan-card:hover {
  border-color: rgba(246, 118, 0, 0.3);
  transform: translateY(-6px);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.8);
}
.plan-card:hover::before { opacity: 1; }

.plan-card-featured {
  border-color: rgba(246, 118, 0, 0.25);
  background: linear-gradient(180deg, #1a0e00 0%, var(--black-card) 100%);
}
.plan-card-featured::before { opacity: 0.6; }

.plan-card-num {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--orange);
}
.plan-card-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid rgba(246, 118, 0, 0.2);
}
.plan-card-icon svg { width: 28px; height: 28px; }
.plan-card-title {
  font-size: var(--fs-h3);
  font-weight: 600;
}
.plan-card-text {
  color: var(--white-soft);
  font-size: 0.95rem;
}
.plan-card-line {
  display: block;
  margin-top: auto;
  width: 32px; height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

/* ============================================================
   DOBRA 3 — INGRESSOS
============================================================ */
.tickets {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(ellipse at top, rgba(246, 118, 0, 0.05) 0%, transparent 50%),
    var(--black);
  border-top: 1px solid var(--black-line);
  border-bottom: 1px solid var(--black-line);
}
.tickets-header {
  text-align: center;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.tickets-h2 { font-size: var(--fs-h2); }
.tickets-sub { color: var(--white-soft); }

.tickets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 1000px) {
  .tickets-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .tickets { padding: 80px 0; }
}

.ticket-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, var(--black-card) 0%, var(--black-card-2) 100%);
  border: 1px solid var(--black-line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.5s var(--ease);
}
.ticket-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.15);
}

.ticket-head {
  padding: 28px 32px 20px;
  border-bottom: 1px solid var(--black-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
}
.ticket-title {
  font-size: 1.4rem;
  font-weight: 600;
}
.ticket-badge {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--orange-soft);
  color: var(--orange);
  border: 1px solid rgba(246, 118, 0, 0.25);
}

.ticket-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
}

.ticket-price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 24px;
  border-bottom: 1px dashed var(--black-line);
}
.ticket-price-from {
  font-size: 0.85rem;
  color: var(--white-soft);
}
.ticket-price-from s { color: var(--orange); opacity: 0.8; }
.ticket-status {
  font-size: 0.85rem;
  color: var(--orange);
  font-weight: 600;
  letter-spacing: 0.05em;
}
.ticket-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 6px;
}
.ticket-currency {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--white-soft);
}
.ticket-value {
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--white);
  line-height: 1;
}
.ticket-cents {
  font-size: 1rem;
  color: var(--white-soft);
}

.ticket-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  list-style: none;
  padding: 0;
}
.ticket-list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.92rem;
  color: var(--white-soft);
  line-height: 1.5;
}
.ticket-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--orange-soft);
  border: 1px solid rgba(246, 118, 0, 0.3);
}
.ticket-list li::after {
  content: '';
  position: absolute;
  left: 5px; top: 10px;
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--orange);
  border-bottom: 1.5px solid var(--orange);
  transform: rotate(-45deg);
}

.btn-ticket {
  width: 100%;
  padding: 16px 24px;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 12px;
  background: transparent;
  color: var(--white);
  border: 1px solid var(--orange);
  transition: all 0.3s var(--ease);
}
.btn-ticket:hover {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 10px 30px -10px var(--orange-glow);
}

/* VIP — destaque */
.ticket-card-vip {
  border-color: rgba(246, 118, 0, 0.4);
  background:
    radial-gradient(ellipse at top, rgba(246, 118, 0, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--black-card) 0%, var(--black-card-2) 100%);
  transform: scale(1.02);
}
@media (max-width: 1000px) {
  .ticket-card-vip { transform: none; }
}
.ticket-card-vip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}
.btn-vip {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 10px 30px -10px var(--orange-glow);
}
.btn-vip:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px var(--orange-glow);
}

/* DIAMANTE */
.ticket-card-diamond {
  border-color: rgba(246, 118, 0, 0.25);
}
.ticket-badge-diamond {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-diamond {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.btn-diamond:hover {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
  box-shadow: 0 10px 30px -10px var(--orange-glow);
}

/* DIAMANTE — ESGOTADO (60 vendas atingidas) */
.ticket-card-soldout {
  filter: grayscale(0.55);
  opacity: 0.62;
}
.ticket-card-soldout:hover {
  transform: none;
  border-color: var(--black-line);
}
.ticket-card-soldout .btn-ticket {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white-soft);
  border-color: rgba(255, 255, 255, 0.15);
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
}
.ticket-soldout-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(5, 5, 5, 0.35);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
  pointer-events: none;
}
.ticket-soldout-stamp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(20, 20, 20, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  transform: rotate(-6deg);
  box-shadow: 0 18px 40px -12px rgba(0, 0, 0, 0.8);
}

/* ============================================================
   DOBRA 4 — POR QUE NÃO PERDER
============================================================ */
.why {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.why-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, var(--orange-soft) 0%, transparent 30%),
    radial-gradient(circle at 80% 70%, var(--orange-soft) 0%, transparent 30%);
  opacity: 0.5;
  pointer-events: none;
}
.why-pattern::before {
  content: '';
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 100% 60px;
  mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
  -webkit-mask-image: linear-gradient(180deg, transparent, black 30%, black 70%, transparent);
}

.why-header {
  position: relative;
  text-align: center;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.why-h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
}

.why-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why { padding: 80px 0; }
}
@media (max-width: 500px) {
  .why-grid { grid-template-columns: 1fr; }
}

.why-stat {
  position: relative;
  padding: 36px 28px;
  background: linear-gradient(180deg, var(--black-card) 0%, transparent 100%);
  border: 1px solid var(--black-line);
  border-radius: var(--radius);
  text-align: left;
  transition: all 0.4s var(--ease);
}
.why-stat::before {
  content: '';
  position: absolute;
  left: 28px; top: 28px;
  width: 4px; height: 24px;
  background: var(--orange);
  border-radius: 2px;
}
.why-stat:hover {
  border-color: rgba(246, 118, 0, 0.3);
  transform: translateY(-4px);
}
.why-stat-num {
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 16px;
  margin-left: 18px;
  background: linear-gradient(135deg, var(--white) 0%, var(--orange) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.why-stat-suffix {
  font-size: 0.5em;
  margin-left: 4px;
  -webkit-text-fill-color: var(--orange);
  color: var(--orange);
}
.why-stat-label {
  font-size: 0.92rem;
  color: var(--white-soft);
  line-height: 1.5;
  margin-left: 18px;
}

.why-cta-text {
  position: relative;
  text-align: center;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--white);
  max-width: 760px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.5;
}

/* ============================================================
   PARALLAX SECTION (São Paulo)
============================================================ */
.parallax-section {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 80px 24px 80px 10%;
  overflow: hidden;
}

/* Camada 1: imagem borrada (fica no fundo) */
.parallax-section::after {
  content: '';
  position: absolute;
  inset: -20px;
  background-image: url('sp.jpeg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  filter: blur(8px);
  z-index: 0;
}

/* Camada 2: seu gradiente escuro (fica em cima do blur) */
.parallax-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.6) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

/* Camada 3: conteúdo (card, textos) por cima de tudo */
.parallax-section > * {
  position: relative;
  z-index: 2;
}

.info-card {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 20px;
  padding: 48px 40px;
  max-width: 780px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.info-card__title {
  font-size: 30px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin-bottom: 32px;
}

.info-card__title u {
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.info-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.info-card__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 16px;
  color: #1a1a1a;
  font-weight: 500;
}

.info-item svg {
  width: 18px;
  height: 18px;
  color: #333;
  flex-shrink: 0;
  margin-top: 3px;
  stroke-width: 1.75;
}

.info-highlight {
  background: #e8591a;
  padding: 24px;
  border-radius: 12px;
  color: #1a1a1a;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.5;
  max-width: 260px;
  align-self: flex-start;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .parallax-section {
    min-height: auto;
    padding: 70px 20px;
    background-attachment: scroll;
    justify-content: center;
  }

  .info-card {
    padding: 32px 24px;
    width: 100%;
  }

  .info-card__title {
    font-size: 24px;
  }

  .info-card__row {
    flex-direction: column;
  }

  .info-highlight {
    max-width: 100%;
  }
}

/* ============================================================
   CARROSSEL DE FOTOS (sobreposto à seção de baixo)
============================================================ */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-top: -120px; /* invade a seção debaixo */
  z-index: 10;
  padding: 40px 0;
  /* fade nas laterais */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.carousel-track {
  display: flex;
  width: max-content;
  animation: scrollCarousel 40s linear infinite;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scrollCarousel {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carousel-img {
  width: 240px;
  height: 320px;
  object-fit: cover;
  border-radius: 12px;
  margin-right: 20px;
  flex-shrink: 0;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.carousel-img:hover {
  transform: scale(1.05);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* ============================================================
   MODAIS
============================================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
  animation: modal-in 0.3s var(--ease);
}

@keyframes modal-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  background: linear-gradient(180deg, var(--black-card) 0%, var(--black-card-2) 100%);
  border: 1px solid rgba(246, 118, 0, 0.25);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.8),
    0 0 60px -20px var(--orange-glow);
  animation: modal-rise 0.4s var(--ease);
  color: var(--white);
  font-family: var(--font);
}

@keyframes modal-rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.modal-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.modal-close:hover {
  background: var(--orange-soft);
  color: var(--orange);
}

/* Tag (PLATEIA / VIP / DIAMANTE) */
.modal-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--orange);
  padding: 6px 12px;
  background: var(--orange-soft);
  border: 1px solid rgba(246, 118, 0, 0.25);
  border-radius: 999px;
  margin-bottom: 16px;
}

.modal-title {
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.modal-sub {
  font-size: 0.92rem;
  color: var(--white-soft);
  margin-bottom: 24px;
  line-height: 1.5;
}

.modal-sub strong {
  color: var(--orange);
  font-weight: 600;
}

/* Form */
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-form label span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--white-soft);
  text-transform: uppercase;
}

.modal-form input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--black-line);
  border-radius: var(--radius-sm);
  color: var(--white);
  font-family: var(--font);
  font-size: 0.95rem;
  font-weight: 400;
  transition: all 0.2s var(--ease);
}

.modal-form input::placeholder {
  color: var(--white-mute);
}

.modal-form input:focus {
  outline: none;
  border-color: var(--orange);
  background: rgba(246, 118, 0, 0.05);
  box-shadow: 0 0 0 3px var(--orange-soft);
}

.modal-submit {
  margin-top: 8px;
  padding: 16px 24px;
  border-radius: 9999px;
  width: 100%;
  background: var(--primary);
  color: var(--primary-foreground);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 4px rgba(246, 118, 0, 0.1);
}

.modal-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 6px rgba(246, 118, 0, 0.2), 0 8px 24px rgba(246, 118, 0, 0.4);
}

.modal-submit svg {
  transition: transform 0.3s ease;
}

.modal-submit:hover svg {
  transform: translateX(4px);
}

.modal-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 0.78rem;
  color: var(--white-mute);
  margin-top: 4px;
}

@media (max-width: 500px) {
  .modal-card { padding: 32px 24px; }
  .modal-title { font-size: 1.15rem; }
}

/* Lock body quando modal aberto */
body.modal-open {
  overflow: hidden;
}
/* ============================================================
   FAQ — DÚVIDAS
============================================================ */
.faq-section {
  position: relative;
  background: #000000;
  padding: 80px 20px 100px;
  overflow: hidden;
}

@media (min-width: 768px) {
  .faq-section {
    padding: 120px 20px;
  }
}

/* Formas amarelas decorativas espalhadas */
.faq-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.faq-shape {
  position: absolute;
  background: var(--primary);
  opacity: 0.08;
}

.faq-shape-1 {
  width: 60px;
  height: 75px;
  top: 5%;
  left: 1%;
  clip-path: polygon(66% 0%, 100% 0%, 100% 100%, 0% 100%, 0% 66%, 66% 66%);
  transform: rotate(-8deg);
}

.faq-shape-2 {
  width: 28px;
  height: 80px;
  top: 30%;
  left: -1%;
  transform: rotate(4deg);
}

.faq-shape-3 {
  width: 48px;
  height: 48px;
  top: 78%;
  left: 0.5%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 50% 50%, 50% 100%, 0% 100%);
}

.faq-shape-4 {
  width: 50px;
  height: 65px;
  top: 6%;
  right: 1%;
  clip-path: polygon(0% 0%, 33% 0%, 33% 66%, 100% 66%, 100% 100%, 0% 100%);
  transform: rotate(20deg);
}

.faq-shape-5 {
  width: 56px;
  height: 56px;
  top: 38%;
  right: -0.5%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 33%, 66% 33%, 66% 100%, 33% 100%, 33% 33%, 0% 33%);
  transform: rotate(-15deg);
}

.faq-shape-6 {
  width: 40px;
  height: 40px;
  top: 70%;
  right: 2%;
  clip-path: polygon(0% 0%, 66% 0%, 66% 50%, 100% 50%, 100% 100%, 33% 100%, 33% 50%, 0% 50%);
}

.faq-container {
  max-width: 768px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Header */
.faq-header {
  text-align: center;
  margin-bottom: 56px;
}

@media (min-width: 768px) {
  .faq-header {
    margin-bottom: 72px;
  }
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 9999px;
  margin-bottom: 24px;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.faq-badge svg {
  flex-shrink: 0;
}

.faq-badge span {
  color: rgba(255, 255, 255, 0.7);
}

.faq-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  color: var(--foreground);
  font-size: var(--fs-h2);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

/* Lista */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  overflow: hidden;
  transition: border-color 0.25s ease, background 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

.faq-item[open] {
  border-color: rgba(246, 118, 0, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

/* Remove o triângulo padrão do <details> */
.faq-question::-webkit-details-marker { display: none; }
.faq-question::marker { display: none; }

.faq-question {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 28px;
  cursor: pointer;
  list-style: none;
  user-select: none;
  font-family: 'Space Grotesk', sans-serif;
}

@media (max-width: 600px) {
  .faq-question {
    padding: 20px 20px;
    gap: 12px;
  }
}

.faq-num {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: rgba(246, 118, 0, 0.4);
  letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums;
  width: 24px;
}

.faq-q-text {
  flex: 1;
  font-size: 16px;
  font-weight: 600;
  color: var(--foreground);
  line-height: 1.4;
  transition: color 0.2s ease;
}

@media (max-width: 600px) {
  .faq-q-text {
    font-size: 14px;
  }
}

.faq-item:hover .faq-q-text {
  color: var(--primary);
}

/* Ícone chevron à direita */
.faq-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(246, 118, 0, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: transform 0.3s ease, background 0.25s ease;
}

.faq-item[open] .faq-icon {
  transform: rotate(180deg);
  background: rgba(246, 118, 0, 0.15);
}

/* Resposta */
.faq-answer {
  padding: 0 28px 24px;
  border-top: 1px solid rgba(246, 118, 0, 0.1);
  animation: faq-fade 0.3s ease;
}

@media (max-width: 600px) {
  .faq-answer {
    padding: 0 20px 20px;
  }
}

.faq-answer p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.65;
  margin-top: 16px;
}

@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   FAQ — BOTÃO "Tire suas dúvidas aqui"
============================================================ */
.faq-cta-wrapper {
  text-align: center;
  margin-top: 56px;
}

@media (min-width: 768px) {
  .faq-cta-wrapper {
    margin-top: 72px;
  }
}

.faq-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  border-radius: 9999px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.faq-cta:hover {
  background: var(--accent);
  color: var(--background);
  transform: scale(1.05);
}

.faq-cta svg {
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
============================================================ */
.footer {
  position: relative;
  padding: 64px 20px 40px;
  background: #000000;
  overflow: hidden;
}

/* Linha gradiente superior amarela/cyan */
.footer-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(246, 118, 0, 0.4), transparent);
}

/* Glow amarelo central no fundo */
.footer-glow {
  position: absolute;
  bottom: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(246, 118, 0, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

/* Formas amarelas decorativas espalhadas */
.footer-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.footer-shape {
  position: absolute;
  background: var(--primary);
  opacity: 0.08;
}

.footer-shape-1 {
  width: 48px;
  height: 48px;
  top: 18%;
  left: 1%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 33%, 66% 33%, 66% 100%, 33% 100%, 33% 33%, 0% 33%);
  transform: rotate(10deg);
}

.footer-shape-2 {
  width: 40px;
  height: 40px;
  top: 70%;
  left: -0.5%;
  clip-path: polygon(33% 0%, 100% 0%, 100% 50%, 66% 50%, 66% 100%, 0% 100%, 0% 50%, 33% 50%);
  transform: rotate(-8deg);
}

.footer-shape-3 {
  width: 52px;
  height: 64px;
  top: 22%;
  right: 1%;
  clip-path: polygon(0% 0%, 33% 0%, 33% 66%, 100% 66%, 100% 100%, 0% 100%);
  transform: rotate(-14deg);
}

.footer-shape-4 {
  width: 36px;
  height: 36px;
  top: 75%;
  right: 2%;
  clip-path: polygon(0% 0%, 100% 0%, 100% 50%, 50% 50%, 50% 100%, 0% 100%);
}

.footer-container {
  position: relative;
  z-index: 10;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

/* Logo (WhatsUp horizontal) */
.footer-logo-icon {
  width: 110px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 30px rgba(246, 118, 0, 0.2));
  margin-bottom: 4px;
}

.footer-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 8px;
}

/* Links na linha de baixo */
.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 16px;
}

@media (min-width: 640px) {
  .footer-links {
    gap: 8px 24px;
  }
}

.footer-link {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link-yellow:hover {
  color: var(--primary);
}

.footer-link-cyan:hover {
  color: var(--accent);
}

.footer-dot {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}
/* ============================================================
   MODAIS DE INGRESSO - ETHB
   Cole isso no final do seu style.css
   ============================================================ */

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.is-open {
  display: flex;
  animation: modalFadeIn .25s ease;
}

@keyframes modalFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.modal-card {
  position: relative;
  background: #0f1115;
  border: 1px solid rgba(255, 222, 7, .2);
  border-radius: 20px;
  padding: 40px 32px 32px;
  max-width: 440px;
  width: 100%;
  max-height: 92vh;
  overflow-y: auto;
  box-shadow: 0 30px 80px rgba(0, 0, 0, .6);
  animation: modalSlideUp .3s cubic-bezier(.2, .8, .2, 1);
}

@keyframes modalSlideUp {
  from { transform: translateY(20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .1);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .2s;
}

.modal-close:hover {
  background: rgba(255, 222, 7, .15);
  border-color: #FFDE07;
  color: #FFDE07;
}

.modal-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  background: linear-gradient(135deg, #FFDE07, #FFB800);
  color: #0f1115;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.modal-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.2;
}

.modal-sub {
  color: rgba(255, 255, 255, .65);
  font-size: 14px;
  line-height: 1.5;
  margin: 0 0 24px;
}

.modal-sub strong {
  color: #FFDE07;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.modal-form label span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  letter-spacing: .02em;
}

.modal-form input {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 10px;
  padding: 12px 14px;
  color: #fff;
  font-size: 15px;
  font-family: inherit;
  transition: all .2s;
}

.modal-form input:focus {
  outline: none;
  border-color: #FFDE07;
  background: rgba(255, 222, 7, .04);
  box-shadow: 0 0 0 3px rgba(255, 222, 7, .12);
}

.modal-form input::placeholder {
  color: rgba(255, 255, 255, .3);
}

.modal-submit {
  margin-top: 8px;
  background: linear-gradient(135deg, #FFDE07, #FFB800);
  color: #0f1115;
  border: none;
  border-radius: 12px;
  padding: 15px 20px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .2s;
}

.modal-submit:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 222, 7, .3);
}

.modal-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.modal-secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
  margin: 4px 0 0;
}
/* ============================================================
   SEÇÃO SOBRE — PILARES (substitui o conteúdo antigo do .about-text)
   Adicionar ESTE CSS depois do bloco .about-section existente
============================================================ */

/* Eyebrow / selo de seção */
.about-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(246, 118, 0, 0.08);
  border: 1px solid rgba(246, 118, 0, 0.2);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
}

.about-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

/* Grid dos 4 pilares */
.about-pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
  margin-bottom: 56px;
}

@media (max-width: 1100px) {
  .about-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .about-pillars {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

/* Card individual */
.pillar-card {
  position: relative;
  padding: 32px 26px 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.45s var(--ease, cubic-bezier(.2,.7,.2,1)),
              border-color 0.3s ease,
              background 0.3s ease,
              box-shadow 0.45s ease;
  overflow: hidden;
  isolation: isolate;
}

/* Linha laranja no topo (aparece no hover) */
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Glow laranja sutil atrás do card no hover */
.pillar-card::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(246, 118, 0, 0.12) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: -1;
}

.pillar-card:hover {
  transform: translateY(-6px);
  border-color: rgba(246, 118, 0, 0.3);
  background: linear-gradient(180deg, rgba(246, 118, 0, 0.04) 0%, rgba(255, 255, 255, 0.01) 100%);
  box-shadow: 0 25px 50px -20px rgba(0, 0, 0, 0.6);
}

.pillar-card:hover::before { opacity: 1; }
.pillar-card:hover::after { opacity: 1; }

/* Card destaque (o segundo) já vem com a linha visível */
.pillar-card-featured {
  border-color: rgba(246, 118, 0, 0.25);
  background: linear-gradient(180deg, rgba(246, 118, 0, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
}

.pillar-card-featured::before { opacity: 0.7; }

/* Numeração */
.pillar-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--primary);
  opacity: 0.85;
}

/* Ícone */
.pillar-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(246, 118, 0, 0.1);
  border: 1px solid rgba(246, 118, 0, 0.22);
  color: var(--primary);
  transition: transform 0.4s var(--ease, cubic-bezier(.2,.7,.2,1)),
              background 0.3s ease;
}

.pillar-icon svg {
  width: 24px;
  height: 24px;
}

.pillar-card:hover .pillar-icon {
  transform: scale(1.08) rotate(-3deg);
  background: rgba(246, 118, 0, 0.18);
}

/* Título */
.pillar-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--foreground);
  letter-spacing: -0.01em;
}

/* Texto */
.pillar-text {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  flex: 1;
}

/* Linha laranja na base */
.pillar-line {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  margin-top: 4px;
  transition: width 0.4s var(--ease, cubic-bezier(.2,.7,.2,1));
}

.pillar-card:hover .pillar-line {
  width: 56px;
}

/* Ajuste do title da seção pra dar respiro com os pilares */
.about-heading {
  margin-bottom: 0 !important;
}
/* ============================================================
   FAQ CTA — BOTÃO "FALAR COM A SECRETARIA" (versão destaque)
   Substitui o estilo anterior do .faq-cta
============================================================ */

.faq-cta-wrapper {
  text-align: center;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

@media (min-width: 768px) {
  .faq-cta-wrapper {
    margin-top: 80px;
  }
}

/* ===== Botão principal ===== */
.faq-cta-pro {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 28px 18px 22px;
  background: linear-gradient(135deg, #F67600 0%, #ff8a1f 50%, #F67600 100%);
  background-size: 200% 100%;
  color: #fff;
  border-radius: 9999px;
  font-family: 'Space Grotesk', sans-serif;
  text-decoration: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1) inset,
    0 18px 40px -12px rgba(246, 118, 0, 0.55),
    0 0 0 6px rgba(246, 118, 0, 0.08);
  transition:
    transform 0.35s cubic-bezier(.2,.7,.2,1),
    box-shadow 0.35s ease,
    background-position 0.6s ease;
  overflow: hidden;
  isolation: isolate;
  cursor: pointer;
}

@media (max-width: 480px) {
  .faq-cta-pro {
    padding: 16px 22px 16px 18px;
    gap: 14px;
    width: 100%;
    max-width: 360px;
    justify-content: space-between;
  }
}

.faq-cta-pro:hover {
  transform: translateY(-3px) scale(1.02);
  background-position: 100% 0;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.15) inset,
    0 24px 50px -10px rgba(246, 118, 0, 0.7),
    0 0 0 8px rgba(246, 118, 0, 0.12);
}

.faq-cta-pro:active {
  transform: translateY(-1px) scale(1.01);
}

/* Glow animado por trás */
.faq-cta-glow {
  position: absolute;
  inset: -2px;
  border-radius: 9999px;
  background: linear-gradient(135deg, #F67600, #ffa54a, #F67600);
  background-size: 200% 200%;
  z-index: -2;
  opacity: 0.5;
  filter: blur(14px);
  animation: faqCtaGlow 4s linear infinite;
}

@keyframes faqCtaGlow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Brilho que percorre o botão */
.faq-cta-pro::before {
  content: '';
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-20deg);
  animation: faqCtaShine 3.5s ease-in-out infinite;
  z-index: -1;
}

@keyframes faqCtaShine {
  0%   { left: -120%; }
  60%  { left: 130%; }
  100% { left: 130%; }
}

/* Ícone redondo */
.faq-cta-icon {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: transform 0.3s ease;
}

.faq-cta-pro:hover .faq-cta-icon {
  transform: rotate(-8deg) scale(1.05);
}

.faq-cta-icon svg {
  position: relative;
  z-index: 2;
}

/* Pulso verde (indicador "online") em cima do ícone */
.faq-cta-pulse {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2fd64d;
  border: 2px solid #F67600;
  z-index: 3;
}

.faq-cta-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: #2fd64d;
  opacity: 0.6;
  animation: faqCtaPulse 1.8s ease-out infinite;
}

@keyframes faqCtaPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}

/* Texto do botão (duas linhas) */
.faq-cta-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  line-height: 1.15;
}

.faq-cta-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 3px;
}

.faq-cta-title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: #fff;
}

@media (max-width: 480px) {
  .faq-cta-title { font-size: 16px; }
  .faq-cta-label { font-size: 10px; }
}

/* Setinha */
.faq-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-cta-pro:hover .faq-cta-arrow {
  transform: translateX(4px);
  background: rgba(255, 255, 255, 0.25);
}

/* Texto auxiliar abaixo */
.faq-cta-helper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.faq-cta-online {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2fd64d;
  box-shadow: 0 0 10px #2fd64d;
  animation: faqCtaBlink 2s ease-in-out infinite;
}

@keyframes faqCtaBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}
/* ============== SEÇÃO VÍDEO ============== */
.video-section {
    position: relative;
    padding: 100px 24px;
    background: #0a0a0a;
    overflow: hidden;
    isolation: isolate;
}

/* Grid pattern de fundo */
.video-grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
    z-index: -1;
}

/* Glows decorativos — laranja padrão da página */
.video-glow-cyan {
    position: absolute;
    top: 10%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(246, 118, 0, 0.2) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.video-glow-yellow {
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(246, 118, 0, 0.14) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

/* Container */
.video-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
}

/* Header */
.video-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.02em;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: 24px;
}

.video-badge-dot {
    width: 8px;
    height: 8px;
    background: #F67600;
    border-radius: 50%;
    box-shadow: 0 0 12px rgba(246, 118, 0, 0.8);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* H2 alinhado ao padrão da página */
.video-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin: 0 0 18px 0;
    letter-spacing: -0.01em;
}

/* Gradiente laranja — padrão da página */
.video-title .text-gradient-cyan {
    background: linear-gradient(135deg, #F67600 0%, #ff9933 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.video-subtitle {
    font-size: clamp(14px, 1.4vw, 16px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
    max-width: 620px;
    margin-left: auto;
    margin-right: auto;
}

/* Wrapper do vídeo com moldura premium — laranja */
.video-frame-wrapper {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px;
    border-radius: 20px;
    background: linear-gradient(135deg,
        rgba(246, 118, 0, 0.14) 0%,
        rgba(255, 255, 255, 0.03) 50%,
        rgba(246, 118, 0, 0.08) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.08),
        0 30px 80px -20px rgba(246, 118, 0, 0.22),
        0 20px 60px -30px rgba(0, 0, 0, 0.8);
}

.video-frame-wrapper::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 20px;
    padding: 1px;
    background: linear-gradient(135deg,
        rgba(246, 118, 0, 0.45) 0%,
        rgba(255, 255, 255, 0.05) 40%,
        rgba(255, 255, 255, 0.05) 60%,
        rgba(246, 118, 0, 0.35) 100%);
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Cantos decorativos estilo "viewfinder" — laranja */
.video-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: #F67600;
    border-style: solid;
    z-index: 2;
    pointer-events: none;
}

.video-corner-tl {
    top: -2px;
    left: -2px;
    border-width: 3px 0 0 3px;
    border-top-left-radius: 8px;
}

.video-corner-tr {
    top: -2px;
    right: -2px;
    border-width: 3px 3px 0 0;
    border-top-right-radius: 8px;
}

.video-corner-bl {
    bottom: -2px;
    left: -2px;
    border-width: 0 0 3px 3px;
    border-bottom-left-radius: 8px;
}

.video-corner-br {
    bottom: -2px;
    right: -2px;
    border-width: 0 3px 3px 0;
    border-bottom-right-radius: 8px;
}

/* Frame interno que contém o player */
.video-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

.video-frame .voomly-embed {
    display: block;
    border-radius: 12px !important;
}

/* CTA */
.video-cta-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

/* ===== RESPONSIVO ===== */
@media (max-width: 768px) {
    .video-section {
        padding: 70px 20px;
    }

    .video-header {
        margin-bottom: 36px;
    }

    .video-frame-wrapper {
        padding: 8px;
        border-radius: 16px;
    }

    .video-corner {
        width: 20px;
        height: 20px;
        border-width: 2px;
    }

    .video-corner-tl { border-width: 2px 0 0 2px; }
    .video-corner-tr { border-width: 2px 2px 0 0; }
    .video-corner-bl { border-width: 0 0 2px 2px; }
    .video-corner-br { border-width: 0 2px 2px 0; }

    .video-cta-wrapper {
        margin-top: 36px;
    }

    .video-glow-cyan,
    .video-glow-yellow {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 56px 16px;
    }

    .video-frame-wrapper {
        padding: 6px;
        border-radius: 14px;
    }
}