﻿/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --primary-color: #8fd8ff;
    --secondary-color: #1a1a1a;
    --accent-color: #63c9ff;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-light: #ffffff;
    --text-gray: #cccccc;
    --text-dark: #666666;
    --smoke-color: rgba(255, 255, 255, 0.1);

    /* Fonts */
    --font-primary: 'Orbitron', sans-serif;
    --font-secondary: 'Roboto', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --container-padding: 0 20px;

    /* Transitions */
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
}

/* Base Styles */
body {
    font-family: var(--font-secondary);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
    position: relative;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title {
    font-size: 3rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 3rem;
    text-transform: none;
    letter-spacing: 1px;
}

.section-header {
    margin-bottom: 4rem;
}

.section-hidden {
    display: none !important;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: var(--font-primary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: var(--text-light);
    box-shadow: 0 4px 20px rgba(143, 216, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(143, 216, 255, 0.5);
}

.btn-secondary {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(143, 216, 255, 0.3);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 2px 20px rgba(143, 216, 255, 0.2);
}

.navbar {
    padding: 12px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-shadow: 0 0 20px rgba(143, 216, 255, 0.5);
}

/* Estilos para logo no menu */
.logo-image-jpg {
    height: 70px;
    width: auto;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(143, 216, 255, 0.5));
    transition: var(--transition);
    display: block;
}

.logo-image-jpg:hover {
    transform: scale(1.08) rotate(2deg);
    filter: drop-shadow(0 0 20px rgba(143, 216, 255, 0.8));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1rem;
    flex-wrap: nowrap;
}

.nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 12px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 82vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 6.5rem 1rem 2rem;
    background: #050505;
    z-index: 0;
}

.hero-background {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    height: calc(100% - 78px);
    z-index: 0;
}

/* Múltiplas camadas de vídeo para efeito mais impactante */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -3;
}

.hero-video.primary {
    z-index: -3;
    opacity: 0.8;
}

.hero-video.secondary {
    z-index: -4;
    opacity: 0.4;
    transform: scale(1.1);
    filter: blur(2px);
}

.hero-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: top center;
    z-index: 0;
}

.hero::before {
    display: none !important;
}

/* Imagens de drift como backup */
.hero-images {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -5;
}

/* Prioridade para imagem personalizada */
.hero-images img[src*="smoke-factory-background"] {
    opacity: 1 !important;
    z-index: -1 !important;
    animation: none !important;
    display: block !important;
}

.drift-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 3s ease-in-out;
}

.drift-bg.custom-factory {
    opacity: 1 !important;
    z-index: -1;
    animation: none;
    /* Imagem principal sempre visível */
    display: block !important;
}

.drift-bg.factory-temp {
    opacity: 0;
    z-index: -5;
    animation: none;
}

.drift-bg.fallback {
    opacity: 0;
    z-index: -6;
}

.drift-bg.burnout {
    animation: driftSlideshow 20s infinite;
    animation-delay: 0s;
}

.drift-bg.tandem {
    animation: driftSlideshow 20s infinite;
    animation-delay: 5s;
}

.drift-bg.furikai {
    animation: driftSlideshow 20s infinite;
    animation-delay: 10s;
}

.drift-bg.fallback {
    opacity: 1;
    z-index: -6;
}

@keyframes driftSlideshow {

    0%,
    20%,
    80%,
    100% {
        opacity: 0;
    }

    30%,
    70% {
        opacity: 0.6;
    }
}

/* Efeitos de fumaça animados */
.smoke-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.smoke {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 40%, transparent 70%);
    animation: smokeMove 15s infinite ease-in-out;
}

.smoke-1 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: 10%;
    animation-delay: 0s;
}

.smoke-2 {
    width: 250px;
    height: 250px;
    bottom: -100px;
    right: 15%;
    animation-delay: 3s;
}

.smoke-3 {
    width: 400px;
    height: 400px;
    bottom: -200px;
    left: 60%;
    animation-delay: 6s;
}

@keyframes smokeMove {
    0% {
        transform: translateY(0) scale(0.5) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    80% {
        opacity: 0.4;
    }

    100% {
        transform: translateY(-100vh) scale(2) rotate(360deg);
        opacity: 0;
    }
}

/* Marcas de pneu */
.tire-marks {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background:
        radial-gradient(ellipse 100px 20px at 20% 90%, rgba(0, 0, 0, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse 120px 25px at 60% 85%, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse 80px 15px at 80% 95%, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to top, 
            rgba(0, 0, 0, 0.95) 0%,
            rgba(0, 0, 0, 0.7) 25%,
            rgba(0, 0, 0, 0.4) 50%,
            rgba(0, 0, 0, 0.2) 75%,
            transparent 100%),
        linear-gradient(135deg,
            rgba(10, 10, 10, 0.5) 0%,
            rgba(26, 26, 26, 0.3) 30%,
            rgba(143, 216, 255, 0.1) 70%,
            rgba(10, 10, 10, 0.6) 100%);
    z-index: -1;
    display: none;
}

.hero-overlay-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 30% 70%, rgba(143, 216, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(99, 201, 255, 0.15) 0%, transparent 60%),
        linear-gradient(45deg, transparent 30%, rgba(143, 216, 255, 0.05) 50%, transparent 70%);
    z-index: -1;
    display: none;
}

/* Hero Logo */
.hero-logo {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    size: 150%;
    margin-bottom: 0;
}

.hero-logo-image,
.hero-logo-image-jpg {
    height: 90px;
    width: auto;
    max-width: 90px;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(143, 216, 255, 0.6));
    transition: var(--transition);
    animation: logoFloat 4s ease-in-out infinite, logoGlow 3s infinite alternate;
    display: block;
    margin: 0 auto;
    margin-bottom: 8px;
    margin-top: 0;
}

/* Se PNG não carregar, mostra JPG */
.hero-logo-image:not([src*=".png"])+.hero-logo-image-jpg,
.hero-logo-image[src=""]+.hero-logo-image-jpg {
    display: block;
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(143, 216, 255, 0.4));
    }

    100% {
        filter: drop-shadow(0 0 40px rgba(143, 216, 255, 0.8));
    }
}

@keyframes logoFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
    }

    50% {
        transform: translateY(-4px) scale(1.01);
    }
}

@keyframes subtitleGlow {
    0% {
        text-shadow: 
            0 0 20px rgba(255, 140, 0, 0.8),
            0 0 40px rgba(255, 140, 0, 0.6),
            0 0 60px rgba(255, 140, 0, 0.4),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
    
    100% {
        text-shadow: 
            0 0 30px rgb(255, 165, 55),
            0 0 60px rgba(255, 140, 0, 0.8),
            0 0 90px rgba(255, 140, 0, 0.6),
            2px 2px 4px rgba(0, 0, 0, 0.8);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    animation: fadeInUp 1s ease-out;
    max-width: 900px;
}

.hero-buttons-wrapper {
    width: 100%;
    max-width: none;
}

.hero-buttons-wrapper .container {
    min-height: 72vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: calc(8rem - 80px);
}

.hero-buttons-only {
    margin-top: 0;
}

.hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 0.1rem;
    text-shadow: 0 0 30px rgba(143, 216, 255, 0.8);
    animation: glow 2s infinite alternate;
}

.hero-subtitle {
    font-size: 2rem;
    color: #aee7ff;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 
        0 0 20px rgba(255, 140, 0, 0.8),
        0 0 40px rgba(255, 140, 0, 0.6),
        0 0 60px rgba(255, 140, 0, 0.4),
        2px 2px 4px rgba(0, 0, 0, 0.8);
    animation: subtitleGlow 3s ease-in-out infinite alternate;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-WHITE);
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-info {
    display: flex;
    justify-content: center;
    gap: 1.3rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-arrow {
    width: 30px;
    height: 30px;
    border-right: 3px solid var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    transform: rotate(45deg);
}

/* Sections */
section {
    padding: var(--section-padding);
    position: relative;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(143, 216, 255, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Sobre Section */
.sobre {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-text h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.sobre-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(143, 216, 255, 0.05);
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.feature:hover {
    transform: translateX(10px);
    background: rgba(143, 216, 255, 0.1);
}

.feature i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.feature h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.feature p {
    color: var(--text-gray);
    margin: 0;
    font-size: 1rem;
}

.sobre-image {
    text-align: center;
    position: relative;
}

.image-gallery {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
    /* Container fixo - não se move */
}

.main-image {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(143, 216, 255, 0.3);
    transition: var(--transition);
}

.gallery-image {
    width: 100%;
    height: 185px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-image:hover,
.main-image:hover {
    transform: scale(1.05) rotate(1deg);
    box-shadow: 0 20px 60px rgba(143, 216, 255, 0.5);
}

/* Animação suave de rotação de imagens */
.gallery-img {
    position: absolute;
    width: 65%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(143, 216, 255, 0.3);
    cursor: pointer;
    /* Transições apenas de opacity e transform */
    transition: opacity 1s ease-in-out, transform 0.3s ease;
    /* Aceleração por hardware */
    backface-visibility: hidden;
    will-change: opacity;
}

/* Posições fixas das imagens - sem mudar layout */
.gallery-img[data-position="main"] {
    left: 0;
    top: 0;
    width: 65%;
    height: 400px;
    opacity: 1;
    z-index: 3;
}

.gallery-img[data-position="top"] {
    right: 0;
    top: 0;
    width: 33%;
    height: 190px;
    opacity: 1;
    z-index: 2;
}

.gallery-img[data-position="bottom"] {
    right: 0;
    top: 210px;
    width: 33%;
    height: 190px;
    opacity: 1;
    z-index: 2;
}

/* Durante a transição - apenas fade suave */
.gallery-img.rotating {
    opacity: 0;
}

/* Hover suave sem quebrar layout */
.gallery-img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(143, 216, 255, 0.5);
    z-index: 10;
}

.gallery-img[data-position="main"]:hover {
    transform: scale(1.015);
}

/* Estatísticas animadas */
.drift-stats {
    display: flex;
    justify-content: space-around;
    background: linear-gradient(45deg, rgba(143, 216, 255, 0.1), rgba(99, 201, 255, 0.1));
    border-radius: 15px;
    padding: 1.5rem;
    border: 2px solid rgba(143, 216, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.drift-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    animation: statShine 3s infinite;
}

@keyframes statShine {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-primary);
    text-shadow: 0 0 20px rgba(143, 216, 255, 0.5);
    animation: statPulse 2s infinite alternate;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 500;
    letter-spacing: 2px;
}

@keyframes statPulse {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

.sobre-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: var(--transition);
}

.sobre-image img:hover {
    transform: scale(1.05);
}

/* Ingressos Section */
.ingressos {
    background: var(--bg-dark);
}

.ingressos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.ingresso-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(143, 216, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.ingresso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(143, 216, 255, 0.1), transparent);
    transition: var(--transition-slow);
}

.ingresso-card:hover::before {
    left: 100%;
}

.ingresso-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(143, 216, 255, 0.3);
    border-color: var(--primary-color);
}

.ingresso-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(143, 216, 255, 0.2);
    transform: scale(1.05);
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.price {
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-gray);
    vertical-align: top;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

.card-features ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.card-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-features i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

.card-btn {
    width: 100%;
    margin-top: auto;
}

.ingressos-cart {
    margin-top: 2rem;
    background: linear-gradient(145deg, rgba(24, 24, 24, 0.9), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(143, 216, 255, 0.28);
    border-radius: 14px;
    padding: 1.4rem;
}

.ingressos-cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.ingressos-cart-header h3 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.ingressos-cart-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ingressos-cart-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(143, 216, 255, 0.08);
    border: 1px solid rgba(143, 216, 255, 0.15);
    border-radius: 8px;
    padding: 0.6rem 0.85rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.ingressos-cart-empty {
    color: var(--text-gray);
    margin: 0.5rem 0 0;
    font-size: 0.95rem;
}

.ingressos-cart-footer {
    margin-top: 1rem;
    border-top: 1px solid rgba(143, 216, 255, 0.2);
    padding-top: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.ingressos-cart-total {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    color: var(--text-light);
}

.btn-disabled,
.btn-disabled:hover {
    opacity: 0.5;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}

.ingressos-info-line {
    margin-top: 1.25rem;
    text-align: center;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.ingressos-info-line i {
    color: var(--primary-color);
    margin-right: 0.45rem;
}

/* Videos Section */
.videos {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
    position: relative;
}

.videos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(143, 216, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 201, 255, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.videos-grid {
    display: grid;
    grid-template-columns: 2.5fr 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Container dos vídeos pequenos */
.small-videos-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.video-item {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease, opacity 0.2s ease;
    cursor: pointer;
    border: 1px solid rgba(143, 216, 255, 0.2);
    position: relative;
}

.video-item.featured-video {
    border: 2px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(143, 216, 255, 0.3);
    height: 100%;
}

.video-item.video-small {
    flex: 1;
}

.video-item.video-small h4 {
    font-size: 1rem;
    padding: 1rem;
}

.video-item.video-small p {
    font-size: 0.8rem;
    padding: 0 1rem 1rem;
}

.video-item.video-small .play-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
}

.video-item.video-small .play-text {
    font-size: 7px;
}

.video-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(143, 216, 255, 0.4);
    border-color: var(--accent-color);
}

.video-thumbnail {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}

.video-bg,
.video-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    position: absolute;
    top: 0;
    left: 0;
}

.video-fallback {
    z-index: 1;
}

.video-bg {
    z-index: 2;
}

.video-item:hover .video-bg,
.video-item:hover .video-fallback {
    transform: scale(1.15) rotate(2deg);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(45deg, rgba(143, 216, 255, 0.95), rgba(99, 201, 255, 0.95));
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: var(--transition);
    z-index: 10;
    border: 3px solid rgba(255, 255, 255, 0.3);
    box-shadow:
        0 0 30px rgba(143, 216, 255, 0.6),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.play-text {
    font-size: 10px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 5px;
}

.video-item:hover .play-button {
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    transform: translate(-50%, -50%) scale(1.2) rotate(360deg);
    box-shadow:
        0 0 50px rgba(143, 216, 255, 0.8),
        inset 0 0 30px rgba(255, 255, 255, 0.2);
}

/* Efeitos de partículas nos vídeos */
.video-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 20%, rgba(143, 216, 255, 0.1) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(99, 201, 255, 0.1) 0%, transparent 30%),
        linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.02) 50%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
    z-index: 3;
}

.video-item:hover .video-effects {
    opacity: 1;
}

.video-item h4 {
    padding: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin: 0;
    background: linear-gradient(90deg, transparent, rgba(143, 216, 255, 0.05), transparent);
}

.video-item p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
    text-align: center;
    margin: 0;
    font-size: 0.9rem;
}

/* Empresas Section */
.empresas {
    background: var(--bg-dark);
}

.empresas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.empresa-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(143, 216, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.empresa-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(143, 216, 255, 0.2);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: white;
}

.empresa-card h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.empresa-card p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.empresa-card ul {
    list-style: none;
    text-align: left;
    margin-bottom: 2rem;
}

.empresa-card li {
    padding: 0.3rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 20px;
}

.empresa-card li::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* Patrocinadores Section */
.patrocinadores {
    background: linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%);
}

.patrocinio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.patrocinio-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.patrocinio-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.patrocinio-options {
    display: grid;
    gap: 1.5rem;
}

.option {
    background: rgba(143, 216, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.option h4 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.option i {
    color: var(--primary-color);
}

.option p {
    color: var(--text-gray);
    margin: 0;
}

.patrocinio-packages h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
    text-align: center;
}

/* Novos Pacotes de Patrocínio */
.patrocinio-info {
    max-width: 1400px;
    margin: 0 auto;
}

.patrocinio-packages-wrapper {
    text-align: center;
}

.patrocinio-packages-wrapper h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

.patrocinio-packages-wrapper .btn {
    margin-top: 3rem;
}

.sponsorship-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.sponsor-package {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95), rgba(10, 10, 10, 0.98));
    border: 2px solid rgba(143, 216, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sponsor-package::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(143, 216, 255, 0.1), transparent);
    transition: var(--transition-slow);
}

.sponsor-package:hover::before {
    left: 100%;
}

.sponsor-package:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(143, 216, 255, 0.4);
    border-color: var(--primary-color);
}

.sponsor-package.bronze .package-header h4 {
    color: #CD7F32;
}

.sponsor-package.prata .package-header h4 {
    color: #C0C0C0;
}

.sponsor-package.ouro .package-header h4 {
    color: #FFD700;
}

.sponsor-package.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(143, 216, 255, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 5px 40px;
    font-size: 0.75rem;
    font-weight: bold;
    transform: rotate(45deg);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.package-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid rgba(143, 216, 255, 0.2);
}

.package-header h4 {
    font-size: 2rem;
    font-family: 'Orbitron', sans-serif;
    letter-spacing: 3px;
    margin: 0;
    text-shadow: 0 0 20px currentColor;
}

.package-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-group {
    margin-bottom: 1rem;
}

.benefit-group-title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: rgba(143, 216, 255, 0.1);
    border-radius: 8px;
}

.benefit-group-title i {
    font-size: 1.2rem;
}

.benefit {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    transition: all 0.3s ease;
    text-align: left;
}

.benefit:hover {
    background: rgba(143, 216, 255, 0.1);
    transform: translateX(5px);
}

.benefit i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.benefit span {
    color: var(--text-gray);
    line-height: 1.6;
    flex: 1;
}

.benefit strong {
    color: var(--primary-color);
}

.benefit.highlight {
    background: rgba(143, 216, 255, 0.15);
    border-left: 3px solid var(--primary-color);
}

.benefit.highlight span {
    color: var(--text-light);
}

.benefit-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: rgba(99, 201, 255, 0.1);
    border-radius: 8px;
    margin-top: 0.5rem;
}

.benefit-note i {
    color: var(--accent-color);
    font-size: 1rem;
}

.benefit-note span {
    color: var(--text-gray);
    font-size: 0.9rem;
    font-style: italic;
}

.packages {
    display: grid;
    gap: 1rem;
    margin-bottom: 2rem;
}

.package {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    border: 1px solid rgba(143, 216, 255, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    transition: var(--transition);
}

.package.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
}

.package:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(143, 216, 255, 0.2);
}

.package h4 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.package-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    font-family: var(--font-primary);
}

/* Contato Section */
.contato {
    background: var(--bg-dark);
}

.contato-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contato-info .info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contato-info i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.2rem;
}

.contato-info h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.contato-info p {
    color: var(--text-gray);
    margin: 0;
}

.social-media {
    margin-top: 2rem;
}

.social-media h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
    border-radius: 50%;
    color: #000000;
    font-size: 1.5rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 20px rgba(143, 216, 255, 0.4);
}

/* Form Styles */
.contato-form {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.8), rgba(10, 10, 10, 0.9));
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(143, 216, 255, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(143, 216, 255, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(143, 216, 255, 0.2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--bg-darker);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(143, 216, 255, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.link-group h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.link-group a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: var(--transition);
}

.link-group a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.footer-contact h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.footer-contact p {
    color: var(--text-gray);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact i {
    color: var(--primary-color);
}

/* Seção de Localização do Evento */
.location-section {
    margin: 3rem auto;
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(143, 216, 255, 0.2);
}

.location-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Container do Minimapa Google Maps */
.map-container {
    margin: 0 auto;
    max-width: 900px;
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(143, 216, 255, 0.3);
    transition: all 0.3s ease;
}

.map-link {
    display: block;
    position: relative;
    text-decoration: none;
    cursor: pointer;
}

.map-container:hover {
    box-shadow: 0 6px 25px rgba(143, 216, 255, 0.5);
    transform: translateY(-3px);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 350px;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0));
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.map-link:hover .map-overlay {
    opacity: 1;
}

.map-overlay i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Organizadores do Evento */
.organizers-section {
    margin-top: 3rem;
    margin-bottom: 3rem;
    padding-top: 2rem;
    padding-bottom: 2rem;
    text-align: center;
}

.organizers-section h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 2rem;
    font-family: 'Orbitron', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.organizers-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.organizer-logo {
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(1) contrast(1);
}

.organizer-logo:hover {
    transform: translateY(-10px) scale(1.05);
    filter: none;
}

.organizer-logo:hover img {
    filter: drop-shadow(0 10px 20px rgba(143, 216, 255, 0.6));
}

.organizer-logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    max-width: 200px;
    background: transparent;
    display: block;
}

@media (max-width: 768px) {
    .organizers-logos {
        gap: 2rem;
    }
    
    .organizer-logo img {
        height: 60px;
        max-width: 150px;
    }
    
    .organizers-section h3 {
        font-size: 1.4rem;
    }

    .location-section h3 {
        font-size: 1.4rem;
    }

    .map-container {
        max-width: 100%;
    }

    .map-container iframe {
        height: 280px;
    }

    .map-overlay {
        font-size: 0.85rem;
        padding: 12px;
    }
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(143, 216, 255, 0.1);
    color: var(--text-dark);
}

/* ==========================================
   SIRENES DE POLÍCIA
   ========================================== */

.police-siren {
    position: absolute;
    bottom: 30px;
    display: flex;
    gap: 20px;
    z-index: 10;
}

.siren-left {
    left: 40px;
}

.siren-right {
    right: 40px;
}

.siren-light {
    width: 60px;
    height: 35px;
    border-radius: 8px;
    position: relative;
    filter: blur(3px);
}

.light-blue {
    background: #0066ff;
    animation: sirenBlue 0.8s infinite;
}

.light-red {
    background: #ff0000;
    animation: sirenRed 0.8s infinite;
}

@keyframes sirenBlue {
    0%, 49% {
        opacity: 1;
        transform: scale(1.1);
        box-shadow: 
            0 0 40px #0066ff, 
            0 0 80px #0066ff, 
            0 0 120px #0066ff,
            0 0 160px rgba(0, 102, 255, 0.5);
    }
    50%, 100% {
        opacity: 0.3;
        transform: scale(0.9);
        box-shadow: 0 0 15px #0066ff;
    }
}

@keyframes sirenRed {
    0%, 49% {
        opacity: 0.3;
        transform: scale(0.9);
        box-shadow: 0 0 15px #ff0000;
    }
    50%, 100% {
        opacity: 1;
        transform: scale(1.1);
        box-shadow: 
            0 0 40px #ff0000, 
            0 0 80px #ff0000, 
            0 0 120px #ff0000,
            0 0 160px rgba(255, 0, 0, 0.5);
    }
}

/* Efeito de reflexo no chão */
.police-siren::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: -10px;
    right: -10px;
    height: 40px;
    filter: blur(15px);
    animation: sirenReflection 0.8s infinite;
    border-radius: 50%;
}

@keyframes sirenReflection {
    0%, 49% {
        background: radial-gradient(ellipse at center, rgba(0, 102, 255, 0.4), transparent);
    }
    50%, 100% {
        background: radial-gradient(ellipse at center, rgba(255, 0, 0, 0.4), transparent);
    }
}

/* Footer precisa ter position relative */
.footer {
    position: relative;
}

/* Responsivo - esconder em mobile */
@media (max-width: 768px) {
    .police-siren {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(143, 216, 255, 0.5);
    }

    to {
        text-shadow: 0 0 30px rgba(143, 216, 255, 0.8), 0 0 40px rgba(143, 216, 255, 0.3);
    }
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    40% {
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .hero {
        height: auto;
        min-height: 78vh;
        padding-top: 5.8rem;
        /*padding: 1rem 0.5rem;*/
    }

    .hero-background {
        top: 70px;
        height: calc(100% - 70px);
    }

    /* Reduz efeito de fumaça no mobile para melhor performance */
    body::before,
    body::after {
        opacity: 0.3;
        filter: blur(20px);
    }

    section::before,
    .container::before {
        opacity: 0.2;
        filter: blur(10px);
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: var(--transition);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Logos responsivas mobile */
    .logo-image,
    .logo-image-jpg {
        height: 45px;
        max-width: 150px;
    }

    .hero-logo-image,
    .hero-logo-image-jpg {
        height: 64px;
        max-width: 64px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-info {
        flex-direction: column;
        gap: 0.3rem;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons-wrapper .container {
        min-height: 68vh;
        padding-bottom: calc(5.2rem + 100px);
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    /* Efeitos de fumaça mobile */
    .smoke {
        display: none;
        /* Desabilitar animações pesadas no mobile */
    }

    /* Vídeos secundários mobile */
    .hero-video.secondary {
        display: none;
    }

    .section-title {
        font-size: 2.5rem;
    }

    /* Galeria de imagens mobile */
    .image-gallery {
        height: 550px;
    }

    .main-image {
        height: 250px;
    }

    .gallery-image {
        height: 150px;
    }

    /* Posições mobile - empilhadas verticalmente */
    .gallery-img[data-position="main"] {
        left: 0;
        top: 0;
        width: 100%;
        height: 250px;
    }

    .gallery-img[data-position="top"] {
        left: 0;
        top: 270px;
        width: 100%;
        height: 130px;
    }

    .gallery-img[data-position="bottom"] {
        left: 0;
        top: 420px;
        width: 100%;
        height: 130px;
    }

    .drift-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Vídeos responsivos */
    .video-item.featured-video {
        grid-column: span 1;
    }

    .play-button {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
    }

    .play-text {
        font-size: 8px;
    }

    .sobre-grid,
    .patrocinio-grid,
    .contato-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sponsorship-packages {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sponsor-package {
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .ingressos-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .small-videos-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .empresas-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 25px;
        font-size: 12px;
    }

    .ingresso-card,
    .empresa-card {
        padding: 1.5rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .location-section {
        padding: 1.5rem 0;
        margin: 2rem auto;
    }

    .location-section h3 {
        font-size: 1.3rem;
    }

    .map-container iframe {
        height: 220px;
    }

    /* Otimizações para telas muito pequenas */
    .hero-video.primary {
        transform: scale(1.5);
        /* Zoom para focar na ação */
    }

    .drift-bg {
        transform: scale(1.2);
    }
}

/* Tablets - 2 colunas para pacotes de patrocínio */
@media (min-width: 769px) and (max-width: 1199px) {
    .sponsorship-packages {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-container {
        max-width: 100%;
    }
}

/* Animações avrançadas para desktop */
@media (min-width: 1024px) {

    /* Efeito parallax no hero */
    .hero-video.primary {
        animation: heroParallax 20s infinite linear;
    }

    @keyframes heroParallax {
        0% {
            transform: scale(1) translateX(0);
        }

        25% {
            transform: scale(1.05) translateX(-20px);
        }

        50% {
            transform: scale(1) translateX(0);
        }

        75% {
            transform: scale(1.05) translateX(20px);
        }

        100% {
            transform: scale(1) translateX(0);
        }
    }

    /* Partículas flutuantes */
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image:
            radial-gradient(circle at 20% 50%, rgba(143, 216, 255, 0.1) 1px, transparent 1px),
            radial-gradient(circle at 60% 20%, rgba(99, 201, 255, 0.1) 1px, transparent 1px),
            radial-gradient(circle at 80% 80%, rgba(143, 216, 255, 0.1) 1px, transparent 1px);
        background-size: 100px 100px, 150px 150px, 120px 120px;
        animation: particleFloat 30s infinite linear;
        pointer-events: none;
        z-index: 0;
    }

    @keyframes particleFloat {
        0% {
            transform: translateY(0) translateX(0);
        }

        33% {
            transform: translateY(-100px) translateX(50px);
        }

        66% {
            transform: translateY(-50px) translateX(-30px);
        }

        100% {
            transform: translateY(0) translateX(0);
        }
    }
}

/* Animações de entrada */
@keyframes driftEnter {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotate(-10deg);
    }

    50% {
        opacity: 0.5;
        transform: translateX(20px) rotate(2deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes burnoutEffect {
    0% {
        box-shadow: 0 0 0 rgba(143, 216, 255, 0);
    }

    50% {
        box-shadow: 0 0 30px rgba(143, 216, 255, 0.8), inset 0 0 20px rgba(255, 255, 255, 0.1);
    }

    100% {
        box-shadow: 0 0 0 rgba(143, 216, 255, 0);
    }
}

/* Hover effects avançados */
.video-item:hover {
    animation: burnoutEffect 1s ease-in-out;
}

.ingresso-card:hover {
    animation: burnoutEffect 1.5s ease-in-out;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--bg-darker), var(--bg-dark));
    display: none; /* DESABILITADO - estava bloqueando o checkout */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: -1; /* Forçar para trás de tudo */
    transition: opacity 0.5s ease;
    pointer-events: none !important; /* Nunca bloquear cliques */
}

.loading.fade-out {
    opacity: 0;
    pointer-events: none !important;
    display: none !important;
}

/* Container do efeito burnout */
.burnout-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Brilho laranja no chão (burnout effect) */
.burnout-glow {
    position: absolute;
    bottom: -40px;
    width: 120px;
    height: 30px;
    background: radial-gradient(ellipse at center,
            rgba(143, 216, 255, 0.8) 0%,
            rgba(143, 216, 255, 0.5) 30%,
            rgba(255, 69, 0, 0.3) 50%,
            transparent 80%);
    filter: blur(10px);
    animation: glowPulse 1.5s ease-in-out infinite;
    z-index: 0;
}

@keyframes glowPulse {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.2);
    }
}

/* Container de partículas de fumaça */
.smoke-particles {
    position: absolute;
    width: 150px;
    height: 150px;
    pointer-events: none;
    z-index: 1;
}

.smoke-particles .smoke {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at center,
            rgba(220, 220, 220, 0.5) 0%,
            rgba(200, 200, 200, 0.3) 30%,
            transparent 70%);
    border-radius: 50%;
    filter: blur(12px);
    opacity: 0;
}

.smoke-particles .smoke:nth-child(1) {
    animation: smokeRise1 2s ease-out infinite;
}

.smoke-particles .smoke:nth-child(2) {
    animation: smokeRise2 2s ease-out infinite 0.5s;
}

.smoke-particles .smoke:nth-child(3) {
    animation: smokeRise3 2s ease-out infinite 1s;
}

@keyframes smokeRise1 {
    0% {
        transform: translate(-50%, 0) scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 0.8;
    }

    100% {
        transform: translate(-60%, -100px) scale(1.5);
        opacity: 0;
    }
}

@keyframes smokeRise2 {
    0% {
        transform: translate(-50%, 0) scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 0.7;
    }

    100% {
        transform: translate(-40%, -110px) scale(1.6);
        opacity: 0;
    }
}

@keyframes smokeRise3 {
    0% {
        transform: translate(-50%, 0) scale(0.5);
        opacity: 0;
    }

    20% {
        opacity: 0.6;
    }

    100% {
        transform: translate(-55%, -105px) scale(1.4);
        opacity: 0;
    }
}

.spinner {
    width: 100px;
    height: 100px;
    position: relative;
    margin-bottom: 20px;
    animation: tireRotation 0.8s linear infinite;
    z-index: 10;
    background-image: url('../images/pneu-progress.png');
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    filter: drop-shadow(0 0 15px rgba(143, 216, 255, 0.6));
}

@keyframes tireRotation {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.loading::after {
    content: 'PNF EVENTOS';
    color: var(--primary-color);
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    animation: glow 2s infinite alternate;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Scroll Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    z-index: 1001;
    transition: width 0.1s ease;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary-color), var(--accent-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-color);
}

/* Estilo para texto do menu (span) */
.nav-logo a {
    text-decoration: none;
}

.nav-logo span {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 20px rgba(143, 216, 255, 0.5);
    transition: var(--transition);
    cursor: pointer;
    display: block;
}

.nav-logo span:hover {
    color: var(--text-light);
    text-shadow: 0 0 30px rgba(143, 216, 255, 0.8);
    transform: scale(1.05);
}

/* Container do Logo - Manter altura do menu fixa */
.nav-logo {
    display: flex;
    align-items: center;
    height: 60px;
    overflow: visible;
}

/* Logo - Imagem */
.nav-logo .logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 0 10px rgba(143, 216, 255, 0.3));
    position: relative;
    z-index: 10;
}

.nav-logo .logo-img:hover {
    filter: drop-shadow(0 0 20px rgba(143, 216, 255, 0.6));
    transform: scale(1.05);
}

/* Logo - Responsivo */
@media (max-width: 768px) {
    .nav-logo .logo-img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .nav-logo .logo-img {
        height: 30px;
    }
}

/* ===========================================
   SEO DE INSCRIO DE PILOTOS
   =========================================== */

.pilotos {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.95), rgba(20, 20, 20, 0.98));
    position: relative;
    overflow: hidden;
}

.pilotos::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1558618047-3c8cd58b45c6?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.1;
    z-index: -1;
}

.pilotos-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.pilotos-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: rgba(30, 30, 30, 0.8);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(143, 216, 255, 0.2);
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(143, 216, 255, 0.2);
}


.info-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(143, 216, 255, 0.5));
}

.info-card h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.info-card p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Formulrio de Inscrio */
.inscricao-form {
    background: rgba(20, 20, 20, 0.9);
    padding: 3rem;
    border-radius: 16px;
    border: 2px solid rgba(143, 216, 255, 0.3);
    backdrop-filter: blur(10px);
}

.form-header {
    margin-bottom: 2rem;
    text-align: center;
}

.form-header h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
    text-shadow: 0 0 20px rgba(143, 216, 255, 0.5);
}

.warning-box {
    background: rgba(143, 216, 255, 0.1);
    border: 1px solid rgba(143, 216, 255, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 1rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.warning-box i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}


.warning-box p {
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

.warning-box strong {
    color: var(--primary-color);
}

/* Estilos do Formulrio */
.piloto-form,
.exposicao-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(143, 216, 255, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(143, 216, 255, 0.3);
    background: rgba(50, 50, 50, 0.9);
}


/* Checkbox customizado */
.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
    flex-direction: row !important;
}

.checkbox-label input[type='checkbox'] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid rgba(143, 216, 255, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: var(--transition);
}

.checkbox-label input[type='checkbox']:checked+.checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type='checkbox']:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #0b1f2b;
    font-weight: 900;
    font-size: 14px;
}

.checkbox-label a {
    color: var(--primary-color);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--text-light);
}

/* Boto de inscrio */
.btn-inscricao {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}


/* Responsividade da seo de pilotos */
@media (max-width: 768px) {
    .pilotos-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .inscricao-form {
        padding: 2rem 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-header h3 {
        font-size: 1.5rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .warning-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .pilotos {
        padding: 60px 0;
    }

    .inscricao-form {
        padding: 1.5rem 1rem;
    }

    .piloto-form,
    .exposicao-form {
        gap: 1rem;
    }

    .checkbox-label {
        font-size: 0.9rem;
    }
}

/* Modal de Termos */
.modal-termos {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.modal-termos-content {
    background: var(--bg-darker);
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 0 30px rgba(143, 216, 255, 0.5);
}

.modal-termos-header {
    padding: 2rem;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(143, 216, 255, 0.1);
}

.modal-termos-header h2 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 3rem;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--primary-color);
    transform: scale(1.2);
}

.modal-termos-body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
}

.modal-termos-body h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-align: center;
}

.modal-termos-body h4 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.termos-section {
    margin-bottom: 2rem;
}

.termos-section p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.termos-section ul {
    list-style: none;
    padding-left: 1.5rem;
}

.termos-section ul li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    position: relative;
}

.termos-section ul li::before {
    content: '▸';
    color: var(--primary-color);
    position: absolute;
    left: -1.5rem;
    font-weight: bold;
}

.termos-destaque {
    background: rgba(143, 216, 255, 0.15);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.termos-destaque i {
    color: var(--primary-color);
    font-size: 2rem;
    flex-shrink: 0;
}

.termos-destaque p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.modal-termos-footer {
    padding: 1.5rem 2rem;
    border-top: 2px solid var(--primary-color);
    display: flex;
    gap: 1rem;
    justify-content: center;
    background: rgba(143, 216, 255, 0.05);
}

.modal-termos-footer .btn {
    padding: 12px 30px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .modal-termos {
        padding: 1rem;
    }
    
    .modal-termos-header {
        padding: 1.5rem;
    }
    
    .modal-termos-header h2 {
        font-size: 1.3rem;
    }
    
    .modal-termos-body {
        padding: 1.5rem;
    }
    
    .modal-termos-footer {
        flex-direction: column;
    }
}

/* ===========================================
   P�GINA DE INSCRI��O DE PILOTOS
   =========================================== */

.pilotos-page {
    min-height: 100vh;
    background: var(--bg-dark);
}

.pilotos-hero {
    position: relative;
    height: 72vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.pilotos-hero .container {
    position: relative;
    z-index: 10;
}

.pilotos-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.pilotos-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.55) 35%,
            rgba(10, 10, 10, 0.35) 60%,
            rgba(143, 216, 255, 0.08) 80%,
            rgba(10, 10, 10, 0.72) 100%);
    z-index: 2;
}

.pilotos-hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 10;
    position: relative;
}

.pilotos-hero-title {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    color: var(--primary-color);
    text-shadow: 0 0 30px rgba(143, 216, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.pilotos-hero-title i {
    font-size: 3.5rem;
    animation: pulse 2s infinite;
}

.pilotos-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-muted);
}


.pilotos-hero-info {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    border: 1px solid rgba(143, 216, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-info-item i {
    color: var(--primary-color);
}

/* Se��o principal da p�gina */
.pilotos-section {
    padding: 80px 0;
    background: linear-gradient(135deg,
            rgba(15, 15, 15, 0.98),
            rgba(25, 25, 25, 0.95));
}

/* Checkbox melhorado - alinhado no in�cio */
.checkbox-label {
    display: flex;
    align-items: flex-start !important;
    gap: 0.75rem;
    cursor: pointer;
    line-height: 1.5;
    flex-direction: row !important;
    text-align: left;
}

.checkmark {
    width: 20px;
    height: 20px;
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid rgba(143, 216, 255, 0.3);
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    transition: var(--transition);
}

.pilotos-page .checkbox-group {
    margin: 1.25rem 0 0.75rem;
}

.pilotos-page .termos-checkbox-label {
    width: 100%;
    background: linear-gradient(145deg, rgba(143, 216, 255, 0.12), rgba(8, 8, 8, 0.72));
    border: 1px solid rgba(143, 216, 255, 0.32);
    border-radius: 12px;
    padding: 0.95rem 1rem;
    align-items: center !important;
}

.pilotos-page .termos-checkbox-label:hover {
    border-color: rgba(143, 216, 255, 0.55);
    box-shadow: 0 0 0 1px rgba(143, 216, 255, 0.2), 0 8px 24px rgba(143, 216, 255, 0.12);
}

.pilotos-page .termos-checkbox-label .checkmark {
    width: 26px;
    height: 26px;
    border-radius: 6px;
    border-width: 2px;
    margin-top: 0;
}

.pilotos-page .termos-checkbox-label .checkbox-text {
    display: block;
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.45;
}

.pilotos-page .termos-checkbox-label input[type='checkbox']:checked + .checkmark {
    background: linear-gradient(135deg, #8fd8ff, #63c9ff);
    border-color: #8fd8ff;
    box-shadow: 0 0 16px rgba(143, 216, 255, 0.45);
}

.pilotos-page .termos-checkbox-label input[type='checkbox']:checked + .checkmark::after {
    font-size: 16px;
}

.pilotos-page .termos-checkbox-label input[type='checkbox']:focus-visible + .checkmark {
    outline: 2px solid rgba(143, 216, 255, 0.7);
    outline-offset: 2px;
}

/* Bot�o voltar */
.btn-secondary {
    background: rgba(60, 60, 60, 0.8);
    color: var(--text-light);
    border: 1px solid rgba(143, 216, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(80, 80, 80, 0.9);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.form-footer {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(143, 216, 255, 0.2);
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-footer p {
    color: var(--text-muted);
    margin: 0;
}

/* Link ativo no menu */
.nav-link.active {
    color: var(--primary-color) !important;
    text-shadow: 0 0 10px rgba(143, 216, 255, 0.5);
}


/* Responsividade p�gina de pilotos */
@media (max-width: 768px) {
    .pilotos-hero {
        height: 56vh;
    }

    .pilotos-hero-title {
        font-size: 2.5rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .pilotos-hero-title i {
        font-size: 2rem;
    }

    .pilotos-hero-subtitle {
        font-size: 1.2rem;
    }

    .pilotos-hero-info {
        gap: 1rem;
    }

    .hero-info-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .pilotos-hero {
        height: 52vh;
    }

    .pilotos-hero-title {
        font-size: 2rem;
    }

    .pilotos-hero-info {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .form-footer {
        flex-direction: column;
        gap: 1.5rem;
    }

    .pilotos-page .termos-checkbox-label {
        align-items: flex-start !important;
        padding: 0.85rem 0.85rem;
    }

    .pilotos-page .termos-checkbox-label .checkmark {
        width: 24px;
        height: 24px;
        margin-top: 2px;
    }

    .pilotos-page .termos-checkbox-label .checkbox-text {
        font-size: 0.93rem;
    }
}

/* ===========================================
   MODAIS DE CADASTRO
   =========================================== */

/* ========================================
   MODAIS DE CADASTRO - SISTEMA SIMPLIFICADO
   ======================================== */

.cadastro-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    display: none;
}

.cadastro-modal.active {
    display: block;
}

.cadastro-modal .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
}

.cadastro-modal .modal-content {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.98), rgba(15, 15, 15, 0.98));
    border: 2px solid rgba(143, 216, 255, 0.3);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 700px;
    width: 100%;
    position: relative;
    margin: auto;
    max-height: 90vh;
    overflow-y: auto;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cadastro-modal .modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 10001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    line-height: 1;
}

.cadastro-modal .modal-close:hover {
    color: var(--text-light);
    transform: rotate(90deg);
}

.cadastro-modal h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    text-shadow: 0 0 20px rgba(143, 216, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cadastro-modal h3 i {
    font-size: 1.5rem;
}

.modal-subtitle {
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.cadastro-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.cadastro-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.cadastro-form .form-group {
    display: flex;
    flex-direction: column;
}

.cadastro-form label {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
}

.cadastro-form input,
.cadastro-form select,
.cadastro-form textarea {
    padding: 12px 16px;
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(143, 216, 255, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    font-family: var(--font-secondary);
    transition: var(--transition);
}

.cadastro-form input:focus,
.cadastro-form select:focus,
.cadastro-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(143, 216, 255, 0.3);
    background: rgba(50, 50, 50, 0.9);
}

.cadastro-form input::placeholder,
.cadastro-form textarea::placeholder {
    color: var(--text-dark);
}

.cadastro-form textarea {
    resize: vertical;
    min-height: 100px;
}

.cadastro-form button[type="submit"] {
    margin-top: 1rem;
    width: 100%;
    font-size: 1.1rem;
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.cadastro-form button[type="submit"]:hover {
    transform: translateY(-2px);
}

/* Mensagem de sucesso */
.success-message {
    background: rgba(46, 204, 113, 0.1);
    border: 2px solid rgba(46, 204, 113, 0.5);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    display: none;
}

.success-message.active {
    display: block;
    animation: slideUp 0.4s ease;
}

.success-message i {
    font-size: 3rem;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.success-message h4 {
    color: #2ecc71;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

/* Responsividade dos modais */
@media (max-width: 768px) {
    .cadastro-modal .modal-content {
        padding: 2rem 1.5rem;
        max-height: 85vh;
    }

    .cadastro-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cadastro-modal h3 {
        font-size: 1.5rem;
    }

    .cadastro-modal .modal-close {
        top: 15px;
        right: 15px;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .cadastro-modal .modal-content {
        padding: 1.5rem 1rem;
        border-radius: 15px;
    }

    .cadastro-form input,
    .cadastro-form select,
    .cadastro-form textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .cadastro-modal h3 {
        font-size: 1.3rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .modal-subtitle {
        font-size: 0.9rem;
    }
}

/* ===========================================
   PÁGINAS ADMINISTRATIVAS
   =========================================== */

/* Tela de Login Admin */
.admin-login {
    min-height: 100vh;
    background: var(--bg-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.admin-login::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(143, 216, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(143, 216, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.login-container {
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    padding: 3rem;
    max-width: 450px;
    width: 100%;
    box-shadow: 0 0 30px rgba(143, 216, 255, 0.3);
    position: relative;
    z-index: 1;
}

.login-header {
    text-align: center;
    margin-bottom: 2rem;
}

.login-header i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.login-header h1 {
    color: var(--primary-color);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.login-header p {
    color: var(--text-gray);
    font-size: 1rem;
}

.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.login-form .form-group {
    display: flex;
    flex-direction: column;
}

.login-form label {
    color: var(--text-light);
    margin-bottom: 0.75rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.login-form input {
    padding: 15px;
    background: rgba(40, 40, 40, 0.8);
    border: 2px solid rgba(143, 216, 255, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.login-form input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 20px rgba(143, 216, 255, 0.3);
}

.login-error {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.5);
    color: #e74c3c;
    padding: 12px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 1.5rem;
    color: var(--text-gray);
    text-decoration: none;
    transition: var(--transition);
}

.back-link:hover {
    color: var(--primary-color);
}

.shake {
    animation: shake 0.5s;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

/* Área Administrativa */
.admin-area {
    min-height: 100vh;
    background: var(--bg-dark);
}

.admin-header {
    background: rgba(20, 20, 20, 0.95);
    border-bottom: 2px solid var(--primary-color);
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 20px rgba(143, 216, 255, 0.2);
}

.admin-header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-logo i {
    font-size: 2rem;
    color: var(--primary-color);
}

.admin-logo h1 {
    color: var(--text-light);
    font-size: 1.5rem;
    margin: 0;
}

.admin-actions {
    display: flex;
    gap: 1rem;
}

.btn-icon {
    background: rgba(143, 216, 255, 0.1);
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    width: 45px;
    height: 45px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.btn-icon:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.btn-icon.spinning {
    animation: spin 1s linear;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.admin-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
}

/* Stats Cards */
.admin-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid rgba(143, 216, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(143, 216, 255, 0.3);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.stat-info h3 {
    font-size: 2rem;
    color: var(--text-light);
    margin: 0 0 0.25rem 0;
}

.stat-info p {
    color: var(--text-gray);
    margin: 0;
    font-size: 0.95rem;
}

/* Filtros */
.admin-filters {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.search-input,
.filter-select {
    padding: 12px 16px;
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid rgba(143, 216, 255, 0.3);
    border-radius: 10px;
    color: var(--text-light);
    font-size: 1rem;
    transition: var(--transition);
}

.search-input {
    flex: 1;
}

.search-input:focus,
.filter-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(143, 216, 255, 0.2);
}

.filter-select {
    min-width: 200px;
}

.filter-select option {
    background: var(--bg-dark);
    color: var(--text-light);
}

/* Tabela Admin - Atualizado para evitar cortes */
.table-container {
    background: rgba(20, 20, 20, 0.95);
    border: 2px solid rgba(143, 216, 255, 0.3);
    border-radius: 15px;
    overflow-x: auto;
    overflow-y: hidden;
}

/* Scrollbar horizontal customizado para table-container */
.table-container::-webkit-scrollbar {
    height: 8px;
}

.table-container::-webkit-scrollbar-track {
    background: rgba(143, 216, 255, 0.1);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

.table-container::-webkit-scrollbar-thumb:hover {
    background: #7ed2ff;
}

.admin-table {
    width: 100%;
    min-width: 1000px;
    border-collapse: collapse;
    table-layout: fixed;
}

.admin-table thead {
    background: rgba(143, 216, 255, 0.1);
}

.admin-table th {
    padding: 0.75rem 0.5rem;
    text-align: left;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(143, 216, 255, 0.3);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Larguras específicas das colunas */
.admin-table th:nth-child(1),
.admin-table td:nth-child(1) {
    width: 40px;
}

.admin-table th:nth-child(2),
.admin-table td:nth-child(2) {
    width: 80px;
}

.admin-table th:nth-child(3),
.admin-table td:nth-child(3) {
    width: 130px;
}

.admin-table th:nth-child(4),
.admin-table td:nth-child(4) {
    width: 180px;
}

.admin-table th:nth-child(5),
.admin-table td:nth-child(5) {
    width: 110px;
}

.admin-table th:nth-child(6),
.admin-table td:nth-child(6) {
    width: 110px;
}

.admin-table th:nth-child(7),
.admin-table td:nth-child(7) {
    width: 90px;
}

.admin-table th:nth-child(8),
.admin-table td:nth-child(8) {
    width: 110px;
}

.admin-table th:nth-child(9),
.admin-table td:nth-child(9) {
    width: 110px;
}

.admin-table th:nth-child(10),
.admin-table td:nth-child(10) {
    width: 90px;
}

.admin-table th:nth-child(11),
.admin-table td:nth-child(11) {
    width: 80px;
}

.admin-table th:nth-child(12),
.admin-table td:nth-child(12) {
    width: 100px;
}

/* Coluna de Ações com largura fixa para 3 botões */
.admin-table th:last-child,
.admin-table td:last-child {
    width: 150px;
    text-align: center;
}

.admin-table td {
    padding: 0.75rem 0.5rem;
    color: #000;
    border-bottom: 1px solid rgba(143, 216, 255, 0.1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.admin-table tbody tr {
    transition: var(--transition);
}

.admin-table tbody tr:hover {
    background: rgba(143, 216, 255, 0.05);
}

.admin-table tbody tr.no-data {
    text-align: center;
    color: #333;
}

.admin-table tbody tr.no-data td {
    padding: 3rem;
    font-size: 1.1rem;
}

.admin-table tbody tr.no-data i {
    font-size: 2rem;
    display: block;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

/* Badges */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

.badge-iniciante {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border: 1px solid #3498db;
}

.badge-intermediario {
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
    border: 1px solid #9b59b6;
}

.badge-avancado {
    background: rgba(230, 126, 34, 0.2);
    color: #e67e22;
    border: 1px solid #e67e22;
}

.badge-profissional {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.badge-drift,
.badge-track,
.badge-stance,
.badge-classico,
.badge-jdm,
.badge-euro,
.badge-nacional,
.badge-outros {
    background: rgba(143, 216, 255, 0.2);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.status-pendente {
    background: rgba(241, 196, 15, 0.2);
    color: #f1c40f;
    border: 1px solid #f1c40f;
}

.status-aprovada {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.status-recusada {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

/* Botões de Ação */
.action-buttons {
    display: flex;
    gap: 0.35rem;
    justify-content: center;
    flex-wrap: nowrap;
    align-items: center;
    min-width: 140px;
}

.btn-action {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: var(--transition);
    flex-shrink: 0;
}

.btn-approve {
    background: rgba(46, 204, 113, 0.2);
    color: #2ecc71;
    border: 1px solid #2ecc71;
}

.btn-approve:hover {
    background: #2ecc71;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.4);
}

.btn-reject {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.btn-reject:hover {
    background: #e74c3c;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
}

.btn-edit {
    background: rgba(52, 152, 219, 0.2);
    color: #3498db;
    border: 1px solid #3498db;
}

.btn-edit:hover {
    background: #3498db;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.btn-view-caronas {
    background: rgba(155, 89, 182, 0.2);
    color: #9b59b6;
    border: 1px solid #9b59b6;
}

.btn-view-caronas:hover {
    background: #9b59b6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(155, 89, 182, 0.4);
}

.btn-delete {
    background: rgba(255, 68, 68, 0.2);
    color: #ff4444;
    border: 1px solid #ff4444;
}

.btn-delete:hover {
    background: #ff4444;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 68, 68, 0.5);
}

.action-disabled {
    color: var(--text-dark);
    font-size: 1rem;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Responsividade Admin */
@media (max-width: 968px) {
    .admin-header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    .admin-filters {
        flex-direction: column;
    }
    
    .filter-select {
        min-width: 100%;
    }
    
    .table-container {
        overflow-x: auto;
    }
    
    .admin-table {
        min-width: 1400px;
    }
    
    /* Manter largura da coluna de ações em mobile */
    .admin-table th:last-child,
    .admin-table td:last-child {
        width: 140px;
        min-width: 140px;
        max-width: 140px;
        position: sticky;
        right: 0;
        background: var(--dark);
        box-shadow: -2px 0 5px rgba(0, 0, 0, 0.1);
    }
    
    .admin-table thead th:last-child {
        background: rgba(143, 216, 255, 0.1);
    }
}

@media (max-width: 768px) {
    .admin-content {
        padding: 1rem;
    }
    
    .admin-stats {
        grid-template-columns: 1fr;
    }
    
    .login-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .admin-header {
        padding: 1rem;
    }
    
    .admin-logo h1 {
        font-size: 1.2rem;
    }
    
    .admin-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .btn-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}

/* ========================================
   SISTEMA DE TOAST (NOTIFICAÇÕES)
========================================= */

.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: white;
    border-left: 4px solid #8fd8ff;
    border-radius: 8px;
    padding: 16px 20px;
    min-width: 300px;
    max-width: 400px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    pointer-events: auto;
    animation: toastSlideIn 0.3s ease-out;
    transition: all 0.3s ease;
}

.toast.removing {
    animation: toastSlideOut 0.3s ease-out forwards;
}

.toast-success {
    border-left-color: #28a745;
}

.toast-success .toast-icon {
    color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.toast-error {
    border-left-color: #dc3545;
}

.toast-error .toast-icon {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.toast-warning {
    border-left-color: #ffc107;
}

.toast-warning .toast-icon {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
}

.toast-info {
    border-left-color: #17a2b8;
}

.toast-info .toast-icon {
    color: #17a2b8;
    background: rgba(23, 162, 184, 0.1);
}

.toast-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: #333;
}

.toast-message {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.toast-close {
    background: none;
    border: none;
    color: #999;
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: all 0.2s;
    flex-shrink: 0;
}

.toast-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

@keyframes toastSlideIn {
    from {
        transform: translateX(400px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(400px);
        opacity: 0;
    }
}

/* Responsivo */
@media (max-width: 480px) {
    .toast-container {
        right: 10px;
        left: 10px;
        top: 10px;
    }
    
    .toast {
        min-width: auto;
        max-width: 100%;
    }
}
/* ==========================================
   MODAL DE CONFIRMAÇÃO
   ========================================== */

.modal-confirm-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-confirm-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-confirm {
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal-confirm-overlay.active .modal-confirm {
    transform: scale(1);
}

.modal-header {
    background: linear-gradient(135deg, #8fd8ff 0%, #aee7ff 100%);
    color: white;
    padding: 20px 24px;
    border-bottom: 3px solid #ff5500;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.modal-body {
    padding: 24px;
    color: #333;
    line-height: 1.6;
}

.modal-body p {
    margin: 0 0 16px 0;
    font-size: 1rem;
}

.modal-body p:last-child {
    margin-bottom: 0;
}

.modal-textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
    transition: border-color 0.3s ease;
    margin-top: 12px;
}

.modal-textarea:focus {
    outline: none;
    border-color: #8fd8ff;
}

.modal-textarea::placeholder {
    color: #999;
}

.modal-footer {
    padding: 16px 24px;
    background-color: #f8f9fa;
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    border-top: 1px solid #e9ecef;
}

.modal-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-btn-cancel {
    background-color: #6c757d;
    color: white;
}

.modal-btn-cancel:hover {
    background-color: #5a6268;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(108, 117, 125, 0.3);
}

.modal-btn-confirm {
    background: linear-gradient(135deg, #8fd8ff 0%, #aee7ff 100%);
    color: white;
}

.modal-btn-confirm:hover {
    background: linear-gradient(135deg, #ff5500 0%, #ff7a32 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(143, 216, 255, 0.4);
}

/* Modal de Input */
.modal-input .modal-body {
    min-height: 200px;
}

/* Responsivo */
@media (max-width: 480px) {
    .modal-confirm {
        width: 95%;
        margin: 0 10px;
    }
    
    .modal-header h3 {
        font-size: 1.2rem;
    }
    
    .modal-body {
        padding: 20px;
        font-size: 0.95rem;
    }
    
    .modal-footer {
        flex-direction: column-reverse;
    }
    
    .modal-btn {
        width: 100%;
    }
}

/* ==========================================
   SEÇÃO DE ACESSO ADMIN
   ========================================== */

.admin-access-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-top: 3px solid #8fd8ff;
}

.admin-access-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(143, 216, 255, 0.3);
    border-radius: 16px;
    padding: 40px;
    max-width: 500px;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.admin-access-box:hover {
    transform: translateY(-5px);
    border-color: #8fd8ff;
    box-shadow: 0 10px 30px rgba(143, 216, 255, 0.3);
}

.admin-access-box i.fas {
    font-size: 3rem;
    color: #8fd8ff;
    margin-bottom: 20px;
}

.admin-access-box h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 10px;
    font-family: 'Orbitron', sans-serif;
}

.admin-access-box p {
    color: #999;
    margin-bottom: 25px;
}

.btn-admin-access {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #8fd8ff 0%, #aee7ff 100%);
    color: white;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-admin-access:hover {
    background: linear-gradient(135deg, #ff5500 0%, #ff7a32 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(143, 216, 255, 0.4);
}

.btn-admin-access i {
    font-size: 1.1rem;
    color: #f1eeee !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.9));
}

@media (max-width: 768px) {
    .admin-access-section {
        padding: 40px 0;
    }
    
    .admin-access-box {
        padding: 30px 20px;
    }
    
    .admin-access-box h3 {
        font-size: 1.4rem;
    }
}

/* ===========================================
   PÁGINA DE CHECKOUT
   =========================================== */

.checkout-section {
    min-height: 100vh;
    background: var(--bg-dark);
    padding: 120px 0 60px;
}

.checkout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.checkout-header h1 {
    color: var(--primary-color);
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 10px 20px;
    background: rgba(143, 216, 255, 0.1);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: var(--primary-color);
    color: var(--bg-dark);
}

.checkout-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

/* Resumo do Pedido */
.order-summary {
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(143, 216, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-item {
    padding: 1.5rem;
    background: rgba(143, 216, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.item-info h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.item-info p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

.item-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(143, 216, 255, 0.2);
}

.item-price .quantity {
    color: var(--text-gray);
}

.item-price .price {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 700;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    margin-bottom: 1.5rem;
}

.order-total span:first-child {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 600;
}

.total-price {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
}

.order-details {
    margin-bottom: 1.5rem;
}

.order-details p {
    color: var(--text-gray);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.order-details i {
    color: var(--primary-color);
}

.secure-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    border-radius: 8px;
    color: #00ff00;
    font-weight: 600;
}

/* Formulário de Pagamento */
.payment-form {
    background: rgba(40, 40, 40, 0.8);
    border: 1px solid rgba(143, 216, 255, 0.3);
    border-radius: 12px;
    padding: 2rem;
}

.payment-form h2 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Abas de Pagamento */
.payment-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: rgba(143, 216, 255, 0.1);
    border: 2px solid rgba(143, 216, 255, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.tab-btn:hover {
    background: rgba(143, 216, 255, 0.2);
    border-color: var(--primary-color);
}

.tab-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-dark);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Formulário */
.form-section {
    margin-bottom: 2rem;
}

.form-section h3 {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(143, 216, 255, 0.3);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(143, 216, 255, 0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px rgba(143, 216, 255, 0.3);
}

.card-input-wrapper {
    position: relative;
}

.card-brand {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
}

.btn-pay,
.btn-generate-pix {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 1rem;
}

/* PIX */
.pix-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.pix-instructions {
    background: rgba(143, 216, 255, 0.1);
    border: 1px solid rgba(143, 216, 255, 0.3);
    border-radius: 8px;
    padding: 1.5rem;
}

.pix-instructions h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.pix-instructions ol {
    color: var(--text-gray);
    padding-left: 1.5rem;
}

.pix-instructions li {
    margin-bottom: 0.5rem;
}

.pix-qr-code {
    text-align: center;
}

.qr-code-wrapper {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.qr-code-wrapper img {
    width: 300px;
    height: 300px;
}

.pix-copy-paste {
    margin-bottom: 1.5rem;
}

.pix-copy-paste label {
    display: block;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.copy-wrapper {
    display: flex;
    gap: 0.5rem;
}

.copy-wrapper input {
    flex: 1;
    padding: 12px;
    background: rgba(20, 20, 20, 0.9);
    border: 1px solid rgba(143, 216, 255, 0.3);
    border-radius: 8px;
    color: var(--text-light);
}

.btn-copy {
    padding: 12px 20px;
    background: var(--primary-color);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-copy:hover {
    background: #aee7ff;
    transform: translateY(-2px);
}

.pix-status {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    border-radius: 8px;
    color: #ffc107;
    font-weight: 600;
}

/* Loading Overlay */
.loading-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 100000;
    align-items: center;
    justify-content: center;
}

.loading-spinner {
    text-align: center;
    color: var(--text-light);
}

.loading-spinner i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.loading-spinner p {
    font-size: 1.2rem;
}

/* Responsivo */
@media (max-width: 1024px) {
    .checkout-container {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
}

@media (max-width: 768px) {
    .checkout-header h1 {
        font-size: 1.8rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .payment-tabs {
        flex-direction: column;
    }
    
    .qr-code-wrapper img {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 480px) {
    .checkout-section {
        padding: 100px 0 40px;
    }
    
    .checkout-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .checkout-header h1 {
        font-size: 1.5rem;
    }
    
    .payment-form,
    .order-summary {
        padding: 1.5rem;
    }
    
    .qr-code-wrapper {
        padding: 1rem;
    }
    
    .qr-code-wrapper img {
        width: 200px;
        height: 200px;
    }

    .ingressos-cart-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .ingressos-cart-footer {
        flex-direction: column;
        align-items: stretch;
    }
}



