/* ================================================
   IMERSÃO VOLMASTER - MODERN LANDING PAGE
   Inspired by Framer & UpSummit Design
   ================================================ */

/* ============================================ */
/* RESET & BASE STYLES */
/* ============================================ */

@keyframes blinkYellow {
    0%, 100% { color: #FFD700; opacity: 1; }
    50% { opacity: 0.2; }
}

.blink-yellow {
    color: #FFD700 !important;
    font-weight: 700 !important;
    animation: blinkYellow 1s ease-in-out infinite;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0a1435;
    color: #fff;
    line-height: 1.6;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================ */
/* CSS VARIABLES */
/* ============================================ */

:root {
    /* Colors */
    --color-primary: #fff;
    --color-secondary: #000;
    --color-blue: #0d1e5a;
    --color-blue-dark: #0a1435;
    --color-blue-mid: #0a1435;
    --color-blue-light: #FFD700;
    --color-teal: #FFD700;
    --color-black: #0a1435;
    --color-yellow: #FFD700;
    --color-accent: #FFD700;
    --color-accent-2: #FDB813;
    --color-text: #eef2ff;
    --color-text-muted: #8baed8;

    /* Gradients - Blue & Gold Theme */
    --gradient-primary: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    --gradient-secondary: linear-gradient(135deg, #0a1435 0%, #0a1435 100%);
    --gradient-accent: linear-gradient(135deg, #FFD700 0%, #DAA520 100%);
    --gradient-success: linear-gradient(135deg, #F4C430 0%, #B8860B 100%);
    --gradient-text: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    --gradient-blue: linear-gradient(135deg, #0d1e5a 0%, #08103a 100%);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(255, 255, 255, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* ============================================ */
/* UTILITY CLASSES */
/* ============================================ */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.gradient-text {
    background: var(--gradient-text);
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent !important;
    display: inline-block;
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-xl);
    color: #fff;
    opacity: 0;
    animation: glitchIn 2s ease-out 0.4s forwards;
    position: relative;
}

.gold-text {
    color: #FFD700 !important;
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.6),
        0 0 30px rgba(255, 215, 0, 0.4);
    display: inline;
    font-weight: 700;
    animation: glowGold 2s ease-in-out infinite alternate;
}

.blue-text {
    color: #FFD700 !important;
    text-shadow:
        0 0 10px rgba(255, 215, 0, 0.8),
        0 0 20px rgba(255, 215, 0, 0.5),
        0 0 35px rgba(255, 215, 0, 0.3);
    display: inline;
    font-weight: 700;
    animation: glowBlue 2s ease-in-out infinite alternate;
}

@keyframes glowBlue {
    0% {
        text-shadow:
            0 0 10px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 0.5),
            0 0 30px rgba(255, 215, 0, 0.3);
    }
    100% {
        text-shadow:
            0 0 20px rgba(255, 215, 0, 1),
            0 0 35px rgba(255, 215, 0, 0.8),
            0 0 50px rgba(255, 215, 0, 0.5),
            0 0 65px rgba(100, 180, 255, 0.3);
    }
}

@keyframes glitchIn {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
        filter: blur(10px);
    }
    20% {
        opacity: 0.3;
        transform: translateY(15px) translateX(-5px) scale(1.02);
        filter: blur(5px);
    }
    30% {
        opacity: 0.6;
        transform: translateY(10px) translateX(5px) scale(0.98);
        filter: blur(3px);
    }
    40% {
        opacity: 0.4;
        transform: translateY(5px) translateX(-3px) scale(1.01);
        text-shadow: -2px 0 #00f, 2px 0 #f00;
    }
    50% {
        opacity: 0.8;
        transform: translateY(0) translateX(0) scale(1);
        text-shadow: -1px 0 #00f, 1px 0 #f00;
    }
    60% {
        opacity: 1;
        transform: translateX(-2px) scale(1.01);
        text-shadow: 0 0 0 transparent;
    }
    70% {
        transform: translateX(2px) scale(0.99);
    }
    80% {
        transform: translateX(-1px) scale(1);
    }
    90% {
        transform: translateX(1px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0) scale(1);
        filter: blur(0);
        text-shadow: 0 0 0 transparent;
    }
}

@keyframes glowGold {
    0% {
        text-shadow: 
            0 0 10px rgba(255, 215, 0, 0.8),
            0 0 20px rgba(255, 215, 0, 0.6),
            0 0 30px rgba(255, 215, 0, 0.4);
    }
    100% {
        text-shadow: 
            0 0 20px rgba(255, 215, 0, 1),
            0 0 30px rgba(255, 215, 0, 0.8),
            0 0 40px rgba(255, 215, 0, 0.6),
            0 0 50px rgba(255, 165, 0, 0.4);
    }
}

/* ============================================ */
/* LANGUAGE SELECTOR */
/* ============================================ */

.language-selector {
    display: flex;
    gap: 8px;
    align-items: center;
    background: linear-gradient(135deg, rgba(10, 20, 53, 0.6) 0%, rgba(10, 20, 53, 0.6) 100%);
    padding: 8px 12px;
    border-radius: 50px;
    border: 2px solid rgba(255, 215, 0, 0.3);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 215, 0, 0.15);  
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 1002;
    position: relative;
    order: 3;
    margin-left: auto;
}

.language-selector:hover {
    border-color: rgba(255, 215, 0, 0.6);
    box-shadow: 0 6px 25px rgba(255, 215, 0, 0.3), 0 0 20px rgba(255, 215, 0, 0.25);
    transform: translateY(-1px);
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    border: 2px solid transparent;
    padding: 6px 12px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.language-btn img {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.language-btn:hover {
    background: rgba(255, 215, 0, 0.15);
    border-color: rgba(255, 215, 0, 0.5);
    color: #FFD700;
    transform: scale(1.05);
}

.language-btn:hover img {
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.language-btn.active {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    border-color: #FFD700;
    color: #000;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.5), 0 0 12px rgba(255, 215, 0, 0.3);
    font-weight: 700;
    transform: scale(1.02);
}

.language-btn.active:hover {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6), 0 0 15px rgba(255, 215, 0, 0.4);
}

.language-btn.active img {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
    .language-selector {
        padding: 5px 6px;
        gap: 3px;
        flex-shrink: 0;
        margin-left: 0;
    }

    .language-btn {
        padding: 5px 7px;
        gap: 0;
        min-width: 36px;
        justify-content: center;
    }

    .language-btn img {
        width: 28px;
        height: 20px;
        border-radius: 3px;
    }

    .language-btn span {
        display: none;
    }
}

/* ============================================ */
/* NAVIGATION */
/* ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: var(--space-md) 0;
    background: rgba(10, 20, 53, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.18);
    transition: all var(--transition-base);
}

.navbar.scrolled {
    padding: var(--space-sm) 0;
    background: rgba(10, 20, 53, 0.99);
    box-shadow: 0 4px 30px rgba(10, 20, 53, 0.6);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-lg);
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    z-index: 1002;
    order: 1;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--space-lg);
    margin: 0;
    order: 2;
}

.nav-menu li a {
    color: var(--color-text);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: -0.01em;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu li a::after {
   content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.nav-menu li a:hover {
    color: var(--color-primary);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: var(--space-xs);
    order: 2;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-base);
    border-radius: 2px;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 10px 20px;
    background: var(--gradient-primary);
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 215, 0, 0.4);
}

.btn-nav svg {
    transition: transform var(--transition-base);
}

.btn-nav:hover svg {
    transform: translateX(4px);
}

/* ============================================ */
/* HERO SECTION */
/* ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('../images/trucks.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 20, 53, 0.8) 0%, rgba(10, 20, 53, 0.98) 100%);
    z-index: 1;
}

.floating-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
    animation: float 8s ease-in-out infinite;
    z-index: 0;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 70%);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 70%);
    top: 50%;
    right: -5%;
    animation-delay: 2s;
}

.shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.25) 0%, transparent 70%);
    bottom: 10%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(20px, -20px); }
    50% { transform: translate(-15px, -35px); }
    75% { transform: translate(15px, -15px); }
}

.hero-container {
    position: relative;
    z-index: 10;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.hero-logo {
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeIn 0.8s ease-out 0.2s forwards;
}

.hero-logo img {
    max-width: 280px;
    height: auto;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: var(--space-xl);
    color: #fff;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.4s forwards;
}

.hero-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.info-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 600;
}

.info-value {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
}

.info-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.125rem);
    line-height: 1.6;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto var(--space-xl);
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

/* ============================================ */
/* HERO SOCIAL LINKS */
/* ============================================ */

.hero-social-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-2xl) auto;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.85s forwards;
}

.social-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-social-icons {
    display: flex;
    gap: var(--space-md);
    align-items: center;
}

.hero-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 215, 0, 0.1);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50%;
    color: var(--color-yellow);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.hero-social-icon svg {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease, color 0.3s ease;
}

.hero-social-icon:hover {
    background: rgba(255, 215, 0, 0.2);
    border-color: var(--color-yellow);
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

.hero-social-icon:hover svg {
    transform: scale(1.15);
}

.hero-actions {
    margin-bottom: var(--space-3xl);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

/* ============================================ */
/* TICKET PREVIEW - HERO */
/* ============================================ */

.ticket-preview {
    margin: var(--space-xl) auto;
    max-width: 280px;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.9s forwards;
    position: relative;
}

.ticket-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
    filter: blur(30px);
}

.ticket-preview:hover::before {
    opacity: 1;
    width: 150%;
    height: 150%;
    animation: glow-pulse 2s ease-in-out infinite;
}

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

.ticket-link {
    display: block;
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #000;
}

.ticket-link:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.25),
                0 8px 20px rgba(0, 0, 0, 0.4);
}

.ticket-image {
    width: 100%;
    height: auto;
    display: block;
}

/* ============================================ */
/* BUTTONS */
/* ============================================ */

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 32px;
    background: var(--gradient-primary);
    color: #000;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    box-shadow: 0 4px 14px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.6);
}

.btn-primary svg {
    transition: transform var(--transition-base);
}

.btn-primary:hover svg {
    transform: translateX(5px);
}

/* ============================================ */
/* COUNTDOWN */
/* ============================================ */

.countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.2s forwards;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xs);
    background: rgba(10, 20, 53, 0.6);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: var(--radius-md);
    padding: var(--space-lg) var(--space-md);
    min-width: 90px;
    position: relative;
    backdrop-filter: blur(5px);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.countdown-value {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1;
    color: #FFD700;
    font-variant-numeric: tabular-nums;
    letter-spacing: -0.02em;
}

.countdown-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

.countdown-divider {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #FFD700;
    box-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

/* ============================================ */
/* VIDEO PRESENTATION SECTION */
/* ============================================ */

.video-presentation {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, rgba(10, 20, 53, 0.95) 0%, rgba(10, 20, 53, 0.95) 100%);
    position: relative;
}

.video-presentation .section-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #FFD700;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5),
                0 0 0 1px rgba(255, 215, 0, 0.2);
    background: rgba(0, 0, 0, 0.3);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================ */
/* EVENT INTRO SECTION */
/* ============================================ */

.event-intro {
    padding: var(--space-3xl) 0;
    background: linear-gradient(180deg, #0d1840 0%, #0a1435 100%);
    position: relative;
}

.event-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.08) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.intro-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-xl);
}

.intro-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-lg);
}

.intro-text strong {
    color: var(--color-yellow);
    font-weight: 700;
}

.text-highlight {
    color: var(--color-yellow);
    font-weight: 700;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Intro Benefits */
.intro-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    margin: var(--space-xl) 0;
    padding: var(--space-lg);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 215, 0, 0.1);
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
    padding: var(--space-sm);
    border-radius: var(--radius-md);
}

.benefit-item:hover {
    background: rgba(255, 215, 0, 0.05);
    transform: translateX(5px);
}

.benefit-item svg {
    flex-shrink: 0;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    animation: star-spin 3s linear infinite;
}

@keyframes star-spin {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(180deg) scale(1.1); }
}

.benefit-item strong {
    color: #FFD700;
    font-weight: 700;
}

/* Intro Subtitle */
.intro-subtitle {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: 800;
    text-align: center;
    margin: var(--space-2xl) 0 var(--space-xl);
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: var(--space-md);
}

.intro-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    border-radius: 2px;
}

/* Intro Goals List */
.intro-goals {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
    max-width: 800px;
    margin: 0 auto var(--space-2xl);
}

.goal-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: linear-gradient(135deg, rgba(10, 20, 53, 0.6) 0%, rgba(10, 20, 53, 0.4) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-lg);
    font-size: 1.05rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.goal-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.goal-item:hover::before {
    left: 100%;
}

.goal-item:hover {
    transform: translateY(-4px) scale(1.02);
    background: linear-gradient(135deg, rgba(10, 20, 53, 0.8) 0%, rgba(10, 20, 53, 0.6) 100%);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3),
                0 0 20px rgba(255, 215, 0, 0.2);
}

.goal-item svg {
    flex-shrink: 0;
    stroke: var(--color-yellow);
    filter: drop-shadow(0 0 6px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
}

.goal-item:hover svg {
    transform: scale(1.2) rotate(360deg);
    filter: drop-shadow(0 0 12px rgba(255, 215, 0, 0.8));
}

.goal-item span {
    position: relative;
    z-index: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .intro-benefits {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
        padding: var(--space-md);
    }
    
    .intro-goals {
        grid-template-columns: 1fr;
        gap: var(--space-sm);
    }
    
    .goal-item {
        padding: var(--space-sm) var(--space-md);
        font-size: 0.95rem;
    }
}

.cta-box {
    margin-top: var(--space-2xl);
    padding: var(--space-xl);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(255, 165, 0, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-xl);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--color-yellow);
}

.cta-highlight svg {
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.btn-large {
    font-size: 1.25rem;
    padding: var(--space-md) var(--space-2xl);
}

/* Intro Ticket Preview */
.intro-cta-section {
    margin-top: var(--space-2xl);
    display: flex;
    justify-content: center;
}

.ticket-preview-intro {
    max-width: 400px;
    width: 100%;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.5s forwards;
    position: relative;
}

.ticket-preview-intro::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
    filter: blur(30px);
}

.ticket-preview-intro:hover::before {
    opacity: 1;
    width: 150%;
    height: 150%;
}


.ticket-badge {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.5);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    animation: badge-pulse 2s ease-in-out infinite;
}

.ticket-badge svg {
    width: 20px;
    height: 20px;
}

@keyframes badge-pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }
}

.ticket-cta-text {
    font-size: 1.125rem;
    margin-top: var(--space-sm);
}

/* ============================================ */
/* PUBLIC TARGET SECTION */
/* ============================================ */

.public-target {
    padding: var(--space-3xl) 0;
    position: relative;
    background: transparent;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
}

.section-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: var(--space-md);
}

.section-description {
    font-size: 18px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

.public-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.public-card {
    position: relative;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    overflow: hidden;
}

.public-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.public-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.public-card:hover::before {
    opacity: 1;
}

.card-glow {
    position: absolute;
    inset: -1px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
    filter: blur(20px);
}

.public-card:hover .card-glow {
    opacity: 0.3;
}

.card-icon {
    margin-bottom: var(--space-lg);
}

.card-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
    letter-spacing: -0.02em;
}

.card-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* ============================================ */
/* TARGET AUDIENCE NEW - MODERN DESIGN */
/* ============================================ */

.target-audience-new {
    padding: var(--space-3xl) 0;
    position: relative;
    background: linear-gradient(135deg, #0a1435 0%, #0a1435 100%);
}

.target-audience-new .section-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.section-title-large {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    color: var(--color-primary);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.audience-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
}

.audience-column {
    background: linear-gradient(135deg, rgba(10, 20, 53, 0.6) 0%, rgba(10, 20, 53, 0.4) 100%);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.audience-column:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.audience-column-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    padding-bottom: var(--space-lg);
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.audience-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(255, 215, 0, 0.15);
    border: 1px solid rgba(255, 215, 0, 0.4);
    flex-shrink: 0;
}

.audience-icon-wrapper svg {
    color: var(--color-accent);
}

.audience-column-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.checklist-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.checklist-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-sm) 0;
}

/* Check Icon (Emoji Checkmark) */
.check-icon {
    font-size: 28px;
    flex-shrink: 0;
    margin-top: 2px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6)) 
            drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    transition: all var(--transition-base);
    cursor: pointer;
    display: inline-block;
    animation: checkPulse 3s ease-in-out infinite;
}

@keyframes checkPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.6)) 
                drop-shadow(0 0 20px rgba(255, 215, 0, 0.3));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8)) 
                drop-shadow(0 0 30px rgba(255, 215, 0, 0.5));
    }
}

.yellow-flag:hover .check-icon {
    transform: scale(1.2) rotate(-10deg);
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9)) 
            drop-shadow(0 0 40px rgba(255, 215, 0, 0.6));
    animation: none;
}

/* Yellow Flag Icons */
.flag-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--color-yellow);
    fill: var(--color-yellow);
    stroke: var(--color-yellow);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
    transition: all var(--transition-base);
    cursor: pointer;
    animation: flagWave 3s ease-in-out infinite;
}

@keyframes flagWave {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-2deg) scale(1.05);
    }
    50% {
        transform: rotate(0deg) scale(1);
    }
    75% {
        transform: rotate(2deg) scale(1.05);
    }
}

.yellow-flag:hover .flag-icon {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.8));
    transform: scale(1.15) rotate(-5deg);
    animation: none;
}

.yellow-text {
    color: var(--color-yellow);
    font-weight: 500;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Legacy checkbox styles - keeping for backward compatibility */
.checkbox {
    width: 32px;
    height: 32px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all var(--transition-base);
    cursor: pointer;
    position: relative;
}

.checkbox::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transition: all var(--transition-base);
}

.checkbox:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.05);
}

.checkbox:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.blue-check .checkbox {
    border-color: var(--color-yellow);
    background: rgba(255, 215, 0, 0.15);
}

.blue-check .checkbox::after {
    background: var(--color-yellow);
}

.checklist-line {
    flex: 1;
    min-height: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: var(--space-xs);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-text);
    display: flex;
    align-items: center;
}

/* Empty line styling */
.checklist-item:last-child .checklist-line {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .audience-columns {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .section-title-large {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .audience-column-header {
        flex-direction: column;
        text-align: center;
    }
    
    .audience-column-title {
        font-size: 1.25rem;
    }
    
    .checklist-item {
        gap: var(--space-sm);
    }
    
    .checkbox {
        width: 28px;
        height: 28px;
    }
    
    .checklist-line {
        font-size: 0.9rem;
    }
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: rgba(10, 20, 53, 0.99);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 100px var(--space-lg) var(--space-lg);
        gap: var(--space-md);
        transition: left var(--transition-base);
        z-index: 999;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .nav-container {
        gap: 6px;
        padding: 0 12px;
    }

    .navbar {
        padding-top: 14px;
        padding-bottom: 14px;
    }

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

    .logo-img {
        height: 36px !important;
        width: auto !important;
        max-width: none !important;
        object-fit: contain;
    }

    .nav-cta {
        display: none;
    }
    
    .hero {
        align-items: flex-start;
        padding: 80px 0 40px;
        min-height: auto;
    }

    .hero-logo {
        margin-top: 70px;
    }
    
    .hero-info {
        flex-direction: column;
        gap: var(--space-md);
    }
    
    .info-divider {
        width: 40px;
        height: 1px;
    }
    
    .countdown {
        gap: var(--space-md);
        flex-wrap: wrap;
    }
    
    .countdown-divider {
        display: none;
    }
    
    .hero-social-links {
        margin: var(--space-xl) auto;
    }
    
    .hero-social-icons {
        gap: var(--space-sm);
    }
    
    .hero-social-icon {
        width: 44px;
        height: 44px;
    }
    
    .hero-social-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .public-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: var(--space-md);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-wide {
        grid-column: span 1;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    /* Ticket previews responsive */
    .ticket-preview {
        max-width: 240px;
        margin: var(--space-md) auto;
    }
    
    .ticket-preview::before {
        display: none;
    }
    
    .ticket-preview-cta {
        max-width: 260px;
        margin: var(--space-md) auto;
    }
    
    .ticket-preview-cta::before {
        display: none;
    }
    
    .ticket-preview-intro {
        max-width: 300px;
    }
    
    .ticket-preview-intro::before {
        display: none;
    }
    
    .ticket-link {
        animation: none;
    }
    
    .ticket-link-cta {
        animation: none;
    }
    
    .ticket-badge {
        top: 10px;
        right: 10px;
        padding: 6px 12px;
        font-size: 0.65rem;
    }
    
    .ticket-overlay span {
        font-size: 0.8rem;
        padding: 0 var(--space-sm);
        text-align: center;
    }
    
    /* Hide custom cursor on mobile */
    .custom-cursor,
    .custom-cursor-dot {
        display: none !important;
    }
    
    /* Adjust scroll-to-top button */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Countdown adjustments - Layout 2x2 para mobile */
    .countdown {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
        max-width: 340px;
        margin: 0 auto;
    }
    
    .countdown-divider {
        display: none;
    }
    
    .countdown-item {
        min-width: auto;
        padding: var(--space-lg) var(--space-sm);
    }
    
    .countdown-value {
        font-size: clamp(2.2rem, 9vw, 3rem);
    }
    
    .countdown-label {
        font-size: 10px;
    }
    
    /* Disable tilt effect on mobile */
    .benefit-card,
    .speaker-card,
    .testimonial-card {
        transform: none !important;
    }
}

/* ============================================ */
/* SPEAKERS SECTION */
/* ============================================ */

.speakers {
    padding: var(--space-3xl) 0;
    position: relative;
    background: transparent;
}

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-lg);
    border-radius: var(--radius-full);
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.4);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: #FFD700;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.speaker-card {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: rgba(13, 24, 64, 0.7);
    border: 1px solid rgba(255, 215, 0, 0.15);
    transition: all var(--transition-base);
    display: flex;
    flex-direction: column;
}

.speaker-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4),
                0 0 30px rgba(255, 215, 0, 0.15);
}

.speaker-image {
    position: relative;
    width: 100%;
    padding-top: 120%;
    overflow: hidden;
}

.speaker-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-base);
}

.speaker-card:hover .speaker-image img {
    transform: scale(1.05);
}

.speaker-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.speaker-card:hover .speaker-overlay {
    opacity: 1;
}

.speaker-info {
    padding: var(--space-lg);
    background: rgba(10, 20, 53, 0.7);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    flex: 1;
}

.speaker-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.speaker-role {
    font-size: 13px;
    color: var(--color-text-muted);
    line-height: 1.6;
    flex: 1;
    margin-bottom: var(--space-sm);
}

.speaker-instagram {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: var(--space-md);
    padding: var(--space-xs) var(--space-md);
    background: rgba(255, 215, 0, 0.1);
    color: var(--color-yellow);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.speaker-instagram:hover {
    background: var(--color-yellow);
    color: var(--color-bg-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.speaker-instagram svg {
    flex-shrink: 0;
}

/* ============================================ */
/* SCHEDULE SECTION */
/* ============================================ */

.schedule {
    padding: var(--space-3xl) 0;
    position: relative;
    background: radial-gradient(circle at bottom left, rgba(255, 215, 0, 0.03) 0%, transparent 50%);
    text-align: center;
}

.schedule-date {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-yellow);
    margin-bottom: var(--space-2xl);
    padding: var(--space-xs) var(--space-xl);
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.15) 0%, rgba(0, 71, 171, 0.15) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-yellow);
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2), inset 0 0 10px rgba(255, 215, 0, 0.05);
    animation: pulseBorder 3s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.schedule-date::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 215, 0, 0.1) 50%, transparent 70%);
    animation: shimmer 3s linear infinite;
    pointer-events: none;
}

@keyframes pulseBorder {
    0%, 100% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.3), inset 0 0 20px rgba(255, 215, 0, 0.1);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 50px rgba(255, 215, 0, 0.5), inset 0 0 30px rgba(255, 215, 0, 0.2);
        transform: scale(1.02);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.schedule-content {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.schedule-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl);
    background: rgba(13, 24, 64, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.schedule-item:hover {
    background: rgba(13, 24, 64, 0.8);
    border-color: rgba(255, 215, 0, 0.4);
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.1);
}

.schedule-time {
    font-size: 1.25rem;
    font-weight: 700;
    color: #FFD700;
    display: flex;
    align-items: center;
}

.schedule-details h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.schedule-details p {
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================ */
/* SPONSORS SECTION */
/* ============================================ */

.sponsors {
    padding: var(--space-3xl) 0;
    position: relative;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.sponsor-card {
    position: relative;
    padding: var(--space-xl);
    background: rgba(13, 24, 64, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    transition: all var(--transition-base);
}

.sponsor-card:hover {
    background: rgba(13, 24, 64, 0.8);
    border-color: rgba(255, 215, 0, 0.5);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.12);
}

.sponsor-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-decoration: none;
}

.sponsor-logo img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%) brightness(0) invert(1);
    opacity: 0.7;
    transition: all var(--transition-base);
}

.sponsor-card:hover .sponsor-logo img {
    filter: none;
    opacity: 1;
}

/* ============================================ */
/* FOOTER */
/* ============================================ */

.footer {
    padding: var(--space-3xl) 0 var(--space-xl);
    background: linear-gradient(135deg, #0a1435 0%, #0a1435 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-section h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--color-text);
}

.footer-section p,
.footer-section li {
    color: var(--color-text-muted);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: var(--space-sm);
}

.footer-section a {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-section a:hover {
    color: #FFD700;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-md);
}

.social-link {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 215, 0, 0.05);
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: var(--radius-md);
    color: var(--color-text-muted);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-link:hover {
    background: rgba(255, 215, 0, 0.1);
    border-color: var(--color-yellow);
    color: var(--color-yellow);
    transform: translateX(5px);
}

.social-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.social-link:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--color-text-muted);
    font-size: 14px;
}

/* Footer Social Links Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }

    .footer-brand {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .footer-logo {
        margin: 0 auto;
    }

    .social-links {
        align-items: center;
    }

    .social-link {
        justify-content: center;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Stats Grid Responsive */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-lg);
    }
    
    .stat-item {
        min-height: 190px;
    }
    
    .stat-number {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
    }
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .stat-item {
        padding: var(--space-xl) var(--space-lg);
        min-height: 180px;
    }
    
    .stat-icon svg {
        width: 40px;
        height: 40px;
    }
    
    .stat-number {
        font-size: clamp(2.5rem, 10vw, 3rem);
    }
    
    .stat-label {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 1rem;
        --space-xl: 2rem;
        --space-2xl: 3rem;
        --space-3xl: 4rem;
    }
    
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero-logo img {
        max-width: 150px;
    }
    
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-item {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .schedule-time {
        padding-bottom: var(--space-sm);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .stat-item {
        padding: var(--space-lg);
        min-height: 160px;
    }
    
    .stat-icon svg {
        width: 36px;
        height: 36px;
    }
    
    .stat-number {
        font-size: clamp(2rem, 12vw, 2.5rem);
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .benefit-number {
        font-size: 3rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .price-value {
        font-size: 3rem;
    }
    
    .cta-content {
        padding: var(--space-xl);
    }
}

/* ============================================ */
/* PRELOADER */
/* ============================================ */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a1435 0%, #0a1435 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo img {
    max-width: 280px;
    animation: pulse 2s ease-in-out infinite;
}

.preloader-spinner {
    margin: var(--space-xl) 0;
    position: relative;
    width: 80px;
    height: 80px;
    margin-left: auto;
    margin-right: auto;
}

.spinner-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--color-accent);
    animation: spin 1.5s linear infinite;
}

.spinner-ring:nth-child(2) {
    width: 60px;
    height: 60px;
    top: 10px;
    left: 10px;
    border-top-color: var(--color-accent-2);
    animation-duration: 2s;
    animation-direction: reverse;
}

.spinner-ring:nth-child(3) {
    width: 40px;
    height: 40px;
    top: 20px;
    left: 20px;
    border-top-color: #FDB813;
    animation-duration: 1s;
}

.preloader-text {
    color: var(--color-text-muted);
    font-size: 14px;
    letter-spacing: 0.05em;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

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

/* ============================================ */
/* PARTICLES */
/* ============================================ */

#particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5;
    pointer-events: none;
}

/* ============================================ */
/* STATS SECTION */
/* ============================================ */

.stats {
    padding: var(--space-3xl) 0;
    position: relative;
    background: linear-gradient(135deg, #0a1435 0%, #0a1435 100%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xl);
    width: 100%;
}

.stat-item {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(13, 24, 64, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-md);
    overflow: visible;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-5px);
}

.stat-icon {
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 48px;
    height: 48px;
}

.stat-number {
    font-size: clamp(1.8rem, 3.5vw, 3.2rem);
    font-weight: 900;
    color: #FFD700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-variant-numeric: tabular-nums;
    white-space: nowrap;
    display: inline-block;
    line-height: 1.1;
    letter-spacing: -0.02em;
    min-width: max-content;
}

.stat-label {
    font-size: 11px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    line-height: 1.4;
    font-weight: 500;
}

/* ============================================ */
/* BENEFITS SECTION */
/* ============================================ */

.benefits {
    padding: var(--space-3xl) 0;
    position: relative;
    background: linear-gradient(135deg, #0a1435 0%, #0a1435 50%, #0a1435 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.benefit-card {
    position: relative;
    padding: var(--space-2xl);
    background: rgba(13, 24, 64, 0.5);
    border: 1px solid rgba(255, 215, 0, 0.12);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-base);
    filter: blur(20px);
}

.benefit-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 215, 0, 0.3);
}

.benefit-card:hover::before {
    opacity: 0.2;
}

.benefit-number {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    font-size: 4rem;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
}

.benefit-icon {
    color: var(--color-accent);
    margin-bottom: var(--space-lg);
}

.benefit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    line-height: 1.3;
}

.benefit-description {
    color: var(--color-text-muted);
    line-height: 1.7;
}

/* ============================================ */
/* TESTIMONIALS SECTION */
/* ============================================ */

.testimonials {
    padding: var(--space-3xl) 0;
    position: relative;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
}

.testimonials-slider {
    position: relative;
    max-width: 900px;
    margin: var(--space-2xl) auto;
    min-height: 400px;
}

.testimonial-card {
    position: absolute;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100px);
    transition: all 0.5s ease;
}

.testimonial-card.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    position: relative;
}

.testimonial-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
}

.testimonial-stars {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--color-text);
    margin-bottom: var(--space-xl);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-accent);
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.author-role {
    font-size: 14px;
    color: var(--color-text-muted);
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.testimonial-prev,
.testimonial-next {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--color-text);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--color-accent);
    transform: scale(1.1);
}

.testimonials-dots {
    display: flex;
    gap: var(--space-sm);
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all var(--transition-base);
}

.testimonial-dot.active {
    background: var(--color-accent);
    width: 32px;
    border-radius: var(--radius-full);
}

/* ============================================ */
/* FAQ SECTION */
/* ============================================ */

.faq {
    padding: var(--space-3xl) 0;
    position: relative;
}

.faq-grid {
    max-width: 900px;
    margin: var(--space-2xl) auto 0;
}

.faq-item {
    margin-bottom: var(--space-lg);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-xl);
    background: transparent;
    border: none;
    color: var(--color-text);
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-base);
}

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

.faq-icon {
    transition: transform var(--transition-base);
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--space-xl) var(--space-xl);
}

.faq-answer p {
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* ============================================ */
/* GALLERY SECTION */
/* ============================================ */

.gallery {
    padding: var(--space-3xl) 0;
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
}

.gallery-item {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.gallery-wide {
    grid-column: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    color: var(--color-accent);
    transform: scale(0.8);
    transition: transform var(--transition-base);
}

.gallery-item:hover .gallery-icon {
    transform: scale(1);
}

/* ============================================ */
/* CTA SECTION */
/* ============================================ */

.cta-section {
    padding: var(--space-3xl) 0;
    position: relative;
    background: none;
}

.cta-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: var(--space-3xl);
    background: rgba(13, 24, 64, 0.6);
    border: 1px solid rgba(255, 215, 0, 0.25);
    border-radius: var(--radius-2xl);
    position: relative;
    overflow: hidden;
}


.cta-title {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.cta-description {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.cta-price {
    margin-bottom: var(--space-2xl);
    position: relative;
    z-index: 1;
}

.price-label {
    display: block;
    font-size: 14px;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: var(--space-sm);
}

.price-value {
    display: block;
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.price-installment {
    display: block;
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* ============================================ */
/* PRICING LOTES */
/* ============================================ */

.pricing-lotes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin: var(--space-2xl) 0;
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.lote-card:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 400px;
    margin: 0 auto;
    width: 100%;
}

.lote-card {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(10, 20, 53, 0.8) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.lote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;  
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.2) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.lote-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.8);
    box-shadow: 0 20px 50px rgba(255, 215, 0, 0.3),
                0 0 40px rgba(255, 215, 0, 0.2);
}

.lote-card:hover::before {
    opacity: 1;
}

.lote-badge {
    display: inline-block;
    background: var(--gradient-accent);
    color: #000;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.1em;
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.lote-price {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-sm);
    line-height: 1.2;
}

.lote-installment {
    font-size: 0.95rem;
    color: var(--color-text);
    margin-bottom: var(--space-xs);
    font-weight: 500;
}

.lote-installment-card {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

/* Vagas restantes */
.vagas-wrap {
    margin-top: 16px;
    width: 100%;
}
.vagas-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.vagas-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.vagas-count {
    font-size: 0.9rem;
    font-weight: 800;
    color: #FFD700;
}
.vagas-pulse {
    animation: vagasPulse 1.4s ease-in-out infinite;
}
@keyframes vagasPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.15); }
}
.vagas-bar {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 99px;
    overflow: hidden;
}
.vagas-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    border-radius: 99px;
    box-shadow: 0 0 8px rgba(255,215,0,0.5);
    animation: fillGlow 2s ease-in-out infinite alternate;
}
@keyframes fillGlow {
    from { box-shadow: 0 0 6px rgba(255,215,0,0.4); }
    to   { box-shadow: 0 0 16px rgba(255,215,0,0.8); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .pricing-lotes {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .lote-card {
        padding: var(--space-lg);
    }
    
    .lote-price {
        font-size: 2rem;
    }
}

/* ============================================ */
/* TICKET PREVIEW - CTA */
/* ============================================ */

.ticket-preview-cta {
    margin: var(--space-xl) auto;
    max-width: 320px;
    position: relative;
    z-index: 1;
}

.ticket-preview-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140%;
    height: 140%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.6s ease;
    z-index: -1;
    filter: blur(40px);
}

.ticket-preview-cta:hover::before {
    opacity: 1;
    width: 180%;
    height: 180%;
    animation: mega-glow 2s ease-in-out infinite;
}

@keyframes mega-glow {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.7;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2) rotate(180deg);
        opacity: 1;
    }
}

.ticket-link-cta {
    display: block;
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #000;
}

.ticket-link-cta:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(255, 215, 0, 0.25),
                0 8px 20px rgba(0, 0, 0, 0.4);
}

.ticket-image-cta {
    width: 100%;
    height: auto;
    display: block;
}

.ticket-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
    color: #000;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 900;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.8),
                inset 0 -2px 10px rgba(0, 0, 0, 0.2);
    animation: badge-pulse 2s ease-in-out infinite;
    z-index: 2;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

@keyframes badge-pulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 5px 25px rgba(255, 215, 0, 0.8),
                    inset 0 -2px 10px rgba(0, 0, 0, 0.2);
    }
    50% { 
        transform: scale(1.05);
        box-shadow: 0 8px 35px rgba(255, 215, 0, 1),
                    inset 0 -2px 10px rgba(0, 0, 0, 0.3);
    }
}

.ticket-link-cta:hover .ticket-badge {
    animation: mega-bounce 0.8s ease;
    background: linear-gradient(135deg, #FFF700 0%, #FFD700 50%, #FFF700 100%);
}

@keyframes mega-bounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    10% { transform: scale(1.2) rotate(-5deg); }
    20% { transform: scale(1.1) rotate(5deg); }
    30% { transform: scale(1.25) rotate(-5deg) translateY(-8px); }
    50% { transform: scale(1.15) rotate(0deg) translateY(0); }
    70% { transform: scale(1.18) rotate(3deg) translateY(-4px); }
    85% { transform: scale(1.12) rotate(-2deg); }
}

/* ============================================ */
/* CTA BUTTONS */
/* ============================================ */

.cta-buttons {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
align-items: center;
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    position: relative;
    z-index: 1;
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-full);
    border: 2px solid rgba(255, 255, 255, 0.45);
    transition: all var(--transition-base);
}

.btn-secondary:hover {
    border-color: var(--color-accent);
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

/* ============================================ */
/* ANIMATIONS */
/* ============================================ */

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

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    }
}

/* ============================================ */
/* ADVANCED INTERACTIVE ELEMENTS */
/* ============================================ */

/* Custom Cursor */
.custom-cursor {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.2s, opacity 0.3s;
    opacity: 0.8;
    mix-blend-mode: difference;
}

.custom-cursor.active {
    transform: scale(1.5);
    background: rgba(255, 215, 0, 0.1);
}

.custom-cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--color-accent);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
    transition: transform 0.15s;
}

.custom-cursor-dot.active {
    transform: scale(0);
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading Animation for Buttons */
.cta-button.loading {
    pointer-events: none;
    position: relative;
    color: transparent;
}

.cta-button.loading::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    top: 50%;
    left: 50%;
    margin-left: -10px;
    margin-top: -10px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: button-spin 0.6s linear infinite;
}

@keyframes button-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Countdown Styling */
.countdown {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    margin-top: var(--space-lg);
}

.countdown-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: var(--space-md);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-width: 80px;
}

.countdown-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: var(--space-xs);
}

.countdown-label {
    display: block;
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Enhanced Card Tilt Effect */
.benefit-card,
.speaker-card,
.testimonial-card {
    transition: transform 0.1s ease;
    transform-style: preserve-3d;
}

/* Navbar Smooth Transition */
.navbar {
    transition: all 0.3s ease, transform 0.3s ease !important;
}

/* Enhanced Glow Effects */
.cta-button:hover,
.btn-primary:hover {
    animation: glow 2s ease-in-out infinite;
}

/* Particle Performance Optimization */
#particles-js {
    will-change: transform;
}

/* Floating Shapes Performance */
.floating-shape {
    will-change: transform;
    transition: transform 0.3s ease-out;
}

/* ============================================ */
/* RESPONSIVE DESIGN */
/* ============================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

.logo-img,
.footer-logo,
.preloader-logo img,
.hero-logo img {
    background: transparent;
}

.ticket-link-text {
    display: block;
    text-align: center;
    color: #FFD700;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    margin-top: 0;
    transition: color 0.2s ease, transform 0.2s ease;
    position: relative;
    z-index: 2;
    background: none;
    border: none;
    padding: 0;
    text-shadow: 0 0 12px rgba(255, 215, 0, 0.5);
}

.ticket-link-text:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* ============================================ */
/* MOBILE OPTIMIZATION — EXTRA FIXES           */
/* ============================================ */

@media (max-width: 768px) {
    /* Hero */
    .hero-title {
        font-size: clamp(1.9rem, 8vw, 2.6rem) !important;
        margin-top: 30px;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-badge {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
        padding: 6px 14px;
    }
    .hero-cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 14px 20px;
        font-size: 0.9rem;
    }
    /* Countdown */
    .countdown-item {
        min-width: 64px;
    }
    .countdown-number {
        font-size: clamp(2rem, 10vw, 3rem) !important;
    }
    /* Section titles */
    .section-title {
        font-size: clamp(1.5rem, 6vw, 2rem) !important;
    }
    /* Schedule */
    .schedule-item {
        flex-direction: column;
        gap: 8px;
    }
    .schedule-time {
        font-size: 0.85rem;
    }
    /* Speakers grid */
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px;
    }
    /* Stats */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    /* Container padding */
    .container {
        padding: 0 16px;
    }
    /* Pricing lotes */
    .pricing-lotes {
        grid-template-columns: 1fr !important;
        max-width: 360px;
        margin: 0 auto;
    }
    /* Localizacao map */
    .localizacao-section iframe {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    /* Speakers 1 col on very small screens */
    .speakers-grid {
        grid-template-columns: 1fr !important;
        max-width: 320px;
        margin: 0 auto;
    }
    /* Hero info */
    .hero-info {
        gap: 12px;
    }
    .info-item {
        flex-direction: column;
        text-align: center;
        gap: 4px;
    }
    /* CTA buttons full width */
    .btn-large {
        width: 100%;
        font-size: 1rem;
        padding: 14px 20px;
    }
    /* Stats single col */
    .stats-grid {
        grid-template-columns: 1fr !important;
    }
    /* Prevent overflow */
    img {
        max-width: 100%;
        height: auto;
    }
    /* Schedule */
    .schedule-details h4 {
        font-size: 0.95rem;
    }
    /* Section padding */
    section {
        padding: 60px 0 !important;
    }
}
