﻿/* 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;
}

.arena-day-video {
    padding: var(--section-padding);
    background:
        radial-gradient(circle at 15% 15%, rgba(143, 216, 255, 0.16), transparent 52%),
        radial-gradient(circle at 85% 30%, rgba(99, 201, 255, 0.12), transparent 48%),
        linear-gradient(180deg, #070b10 0%, #050505 100%);
    border-top: 1px solid rgba(143, 216, 255, 0.18);
    border-bottom: 1px solid rgba(143, 216, 255, 0.12);
}

.arena-video-wrapper {
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.arena-video-frame {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 52px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(143, 216, 255, 0.18);
    background: #000;
}

.arena-video-frame::before {
    content: '';
    display: block;
    padding-top: 56.25%;
}

.arena-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.arena-video-cta {
    margin-top: 18px;
}

.arena-moments {
    margin-top: 16px;
    text-align: left;
    background: rgba(8, 15, 22, 0.88);
    border: 1px solid rgba(143, 216, 255, 0.22);
    border-radius: 14px;
    padding: 14px;
}

.arena-moments-title {
    font-family: var(--font-primary);
    font-size: 0.92rem;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
}

.arena-moments-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.arena-moment-btn {
    border: 1px solid rgba(143, 216, 255, 0.42);
    border-radius: 999px;
    background: rgba(143, 216, 255, 0.08);
    color: #dff6ff;
    font-family: var(--font-secondary);
    font-size: 0.86rem;
    font-weight: 600;
    padding: 8px 12px;
    cursor: pointer;
    transition: var(--transition);
}

.arena-moment-btn:hover {
    transform: translateY(-1px);
    background: rgba(143, 216, 255, 0.2);
    border-color: rgba(143, 216, 255, 0.7);
}

.arena-moments-note {
    margin-top: 10px;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* 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%;
}

.nav-item-admin-mobile {
    display: none;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    z-index: 20;
}

.nav-cart-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(143, 216, 255, 0.35);
    background: rgba(143, 216, 255, 0.1);
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

.nav-cart-btn:hover {
    color: #fff;
    background: rgba(143, 216, 255, 0.22);
    border-color: rgba(143, 216, 255, 0.6);
    transform: translateY(-1px);
}

.nav-cart-btn i {
    font-size: 1.05rem;
}

.nav-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    background: #ef4444;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    box-shadow: 0 0 0 2px rgba(10, 10, 10, 0.9);
}

.nav-cart-btn.is-empty .nav-cart-count {
    background: #64748b;
}

.ingressos-cart.cart-highlight {
    animation: cartPulse 1.2s ease;
    box-shadow: 0 0 0 2px rgba(143, 216, 255, 0.55), 0 0 28px rgba(143, 216, 255, 0.25);
}

@keyframes cartPulse {
    0% { transform: scale(1); }
    40% { transform: scale(1.015); }
    100% { transform: scale(1); }
}

.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;
}

.hero-clip-layer {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    opacity: 0.42;
    pointer-events: none;
}

.hero-mobile-expo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: none;
    z-index: 1;
}

.hero-clip-iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 130vw;
    height: 73.125vw;
    min-height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%);
    border: 0;
    filter: contrast(1.08) saturate(1.12);
}

/* 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-overlay-sticker {
    position: absolute;
    left: 50%;
    top: 12%;
    width: min(74vw, 860px);
    max-height: 48vh;
    object-fit: contain;
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
    filter: drop-shadow(0 16px 36px rgba(0, 0, 0, 0.55)) drop-shadow(0 0 16px rgba(143, 216, 255, 0.45));
    animation: stickerEntrance 0.9s ease-out both, stickerFloat 3.6s ease-in-out 1s infinite;
}

@keyframes stickerEntrance {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(18px) scale(0.94);
    }

    100% {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}

@keyframes stickerFloat {
    0%,
    100% {
        transform: translateX(-50%) translateY(0);
    }

    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.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;
    gap: 2.4rem;
    align-items: start;
}

.sobre-text {
    max-width: 960px;
    margin: 0 auto;
}

.sobre-text h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.sobre-main-title {
    text-align: center;
    color: var(--primary-color);
}

.sobre-text p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 1.2rem;
    line-height: 1.95;
}

.sobre-text .sobre-lead {
    color: #d9ecfb;
    font-size: 1.08rem;
    margin-bottom: 1.2rem;
}

.sobre-text h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin: 1.6rem 0 0.8rem;
}

.sobre-highlight-title {
    text-align: center;
    color: var(--primary-color);
}

.formato-card {
    margin: 0.85rem 0 1.35rem;
    padding: 18px;
    border-radius: 16px;
    background:
        radial-gradient(circle at 18% 18%, rgba(143, 216, 255, 0.14), transparent 45%),
        linear-gradient(145deg, rgba(9, 19, 30, 0.95), rgba(6, 11, 18, 0.98));
    border: 1px solid rgba(143, 216, 255, 0.32);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35), inset 0 0 0 1px rgba(143, 216, 255, 0.08);
}

.formato-headline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.formato-badge-total {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, rgba(99, 201, 255, 0.9), rgba(143, 216, 255, 0.65));
    color: #05101b;
    font-family: var(--font-primary);
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.86rem;
    box-shadow: 0 0 0 2px rgba(143, 216, 255, 0.16), 0 8px 20px rgba(80, 166, 215, 0.28);
}

.formato-headline p {
    margin: 0;
    color: #d7ebfb;
    font-size: 0.98rem;
}

.formato-fases {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 12px;
}

.formato-fase {
    position: relative;
    padding: 14px 14px 13px;
    border-radius: 12px;
    border: 1px solid rgba(143, 216, 255, 0.25);
    background: rgba(7, 15, 24, 0.78);
    overflow: hidden;
}

.formato-fase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, rgba(143, 216, 255, 0.2), rgba(143, 216, 255, 0.85));
}

.fase-badge {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.72rem;
    font-family: var(--font-primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #96dfff;
}

.formato-fase h5 {
    margin: 0 0 6px;
    font-size: 0.95rem;
    letter-spacing: 1px;
    color: #f4fbff;
}

.formato-fase p {
    margin: 0;
    color: #bed3e4;
    font-size: 0.9rem;
    line-height: 1.45;
}

.fase-armagedon {
    border-color: rgba(143, 216, 255, 0.25);
    background: rgba(7, 15, 24, 0.78);
}

.fase-armagedon::before {
    background: linear-gradient(90deg, rgba(143, 216, 255, 0.2), rgba(143, 216, 255, 0.85));
}

.fase-armagedon .fase-badge {
    color: #96dfff;
}

.formato-extras {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 12px;
}

.formato-extra {
    padding: 14px;
    border-radius: 12px;
    border: 1px solid rgba(143, 216, 255, 0.22);
    background: rgba(7, 15, 24, 0.78);
}

.formato-extra h5 {
    margin: 0 0 6px;
    font-size: 0.92rem;
    letter-spacing: 1px;
    color: #f4fbff;
    text-transform: uppercase;
}

.formato-extra p {
    margin: 0;
    color: #bed3e4;
    font-size: 0.9rem;
    line-height: 1.45;
}

.formato-extra strong {
    color: #e8f6ff;
}

.formato-aviso {
    border-color: rgba(255, 180, 96, 0.45);
    background:
        linear-gradient(145deg, rgba(42, 24, 10, 0.72), rgba(7, 15, 24, 0.9));
}

.formato-aviso .fase-badge {
    color: #ffc48a;
}

.formato-aviso h5 {
    color: #ffe0b8;
}

.categoria-card {
    margin: 0.7rem 0 1.4rem;
    background: rgba(14, 23, 33, 0.9);
    border: 1px solid rgba(143, 216, 255, 0.25);
    border-radius: 14px;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.categoria-lista {
    margin: 0;
    color: var(--text-light);
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 0.5rem 1rem;
    list-style: none;
    padding: 0;
}

.categoria-lista li {
    line-height: 1.45;
    min-height: 0;
    display: block;
    text-align: center;
    font-weight: 700;
    letter-spacing: 0.4px;
    padding: 0.25rem 0.2rem;
}

@media (max-width: 860px) {
    .formato-headline {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-bottom: 16px;
    }

    .formato-headline p {
        font-size: 0.92rem;
        line-height: 1.45;
    }

    .formato-fases {
        position: relative;
        grid-template-columns: 1fr;
        gap: 0;
        padding-left: 18px;
    }

    .formato-fases::before {
        content: '';
        position: absolute;
        top: 10px;
        bottom: 10px;
        left: 5px;
        width: 2px;
        background: linear-gradient(
            180deg,
            rgba(143, 216, 255, 0.15),
            rgba(143, 216, 255, 0.7),
            rgba(255, 180, 96, 0.55)
        );
    }

    .formato-fase {
        padding: 14px 14px 14px 16px;
        margin-bottom: 12px;
        border-radius: 14px;
    }

    .formato-fase:last-child {
        margin-bottom: 0;
    }

    .formato-fase::after {
        content: '';
        position: absolute;
        top: 22px;
        left: -17px;
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #8fd8ff;
        box-shadow: 0 0 0 3px rgba(143, 216, 255, 0.18), 0 0 12px rgba(143, 216, 255, 0.45);
        z-index: 1;
    }

    .fase-armagedon::after {
        background: #ffc48a;
        box-shadow: 0 0 0 3px rgba(255, 180, 96, 0.2), 0 0 12px rgba(255, 180, 96, 0.4);
    }

    .fase-badge {
        display: inline-flex;
        align-items: center;
        padding: 4px 10px;
        margin-bottom: 10px;
        border-radius: 999px;
        background: rgba(143, 216, 255, 0.12);
        border: 1px solid rgba(143, 216, 255, 0.28);
        font-size: 0.68rem;
    }

    .fase-armagedon .fase-badge {
        background: rgba(255, 180, 96, 0.12);
        border-color: rgba(255, 180, 96, 0.35);
        color: #ffc48a;
    }

    .formato-fase h5 {
        font-size: 0.9rem;
        line-height: 1.35;
        letter-spacing: 0.6px;
    }

    .formato-fase p {
        font-size: 0.86rem;
        line-height: 1.5;
    }

    .formato-extras {
        grid-template-columns: 1fr;
        margin-top: 14px;
        gap: 10px;
    }

    .formato-extra {
        padding: 13px 14px;
        border-radius: 14px;
    }

    .formato-extra h5 {
        font-size: 0.86rem;
    }

    .formato-extra p {
        font-size: 0.86rem;
        line-height: 1.5;
    }

    .categoria-lista {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
    }
}

@media (max-width: 520px) {
    .sobre-text h3 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .sobre-text p {
        font-size: 0.98rem;
        line-height: 1.7;
    }

    .sobre-text h4 {
        font-size: 1rem;
    }

    .categoria-lista {
        grid-template-columns: 1fr;
    }

    .formato-card {
        padding: 14px 12px;
        border-radius: 14px;
    }

    .formato-badge-total {
        width: 100%;
        font-size: 0.82rem;
        padding: 9px 12px;
    }

    .formato-fases {
        padding-left: 16px;
    }

    .formato-fase::after {
        left: -15px;
    }

    .sobre-cta {
        flex-direction: column;
    }

    .sobre-cta .btn {
        width: 100%;
        text-align: center;
    }
}

.premiacao-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 0.8rem 0 1.4rem;
}

.premio-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.85), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(143, 216, 255, 0.2);
    border-radius: 16px;
    padding: 1rem 1rem 0.9rem;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
}

.premio-card h5 {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.6rem;
    letter-spacing: 1px;
}

.premio-card ul {
    margin: 0 0 0 1rem;
    color: var(--text-gray);
}

.premio-card li {
    margin-bottom: 0.35rem;
}

.premio-ouro {
    border-color: rgba(240, 194, 72, 0.55);
}

.premio-prata {
    border-color: rgba(186, 205, 226, 0.45);
}

.premio-bronze {
    border-color: rgba(199, 129, 74, 0.55);
}

.sobre-note {
    margin-top: 0.25rem;
    color: #c9d8e5;
    font-size: 1rem;
}

.sobre-topics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.sobre-topic-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.82), rgba(10, 10, 10, 0.95));
    border: 1px solid rgba(143, 216, 255, 0.22);
    border-radius: 14px;
    padding: 1rem 1rem 0.9rem;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.28);
}

.sobre-topic-card h4 {
    margin: 0 0 0.6rem;
    font-size: 1rem;
}

.sobre-topic-card ul {
    margin: 0;
    padding-left: 1rem;
    display: grid;
    gap: 0.45rem;
}

.sobre-topic-card li {
    color: var(--text-gray);
    line-height: 1.55;
    font-size: 0.95rem;
}

.sobre-cta {
    margin-top: 1.3rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.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;
    max-width: 960px;
    width: 100%;
    margin: 0 auto;
    margin-top: 1.2rem;
}

.image-gallery {
    position: relative;
    width: 100%;
    height: 400px;
    margin-bottom: 2rem;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(143, 216, 255, 0.35);
    box-shadow: 0 15px 50px rgba(143, 216, 255, 0.24);
}

.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);
}

.about-carousel-track {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}

.about-carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.45s ease;
    border-radius: 0;
}

.about-carousel-image.active-left,
.about-carousel-image.active-right {
    opacity: 1;
    z-index: 1;
}

.about-carousel-image.active-left {
    left: 0;
}

.about-carousel-image.active-right {
    left: 50%;
}

.about-carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 999px;
    border: 1px solid rgba(143, 216, 255, 0.6);
    background: rgba(6, 14, 23, 0.68);
    color: #d6efff;
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
}

.about-carousel-nav:hover {
    background: rgba(99, 201, 255, 0.25);
}

.about-carousel-nav.prev {
    left: 12px;
}

.about-carousel-nav.next {
    right: 12px;
}

.about-carousel-dots {
    position: absolute;
    left: 50%;
    bottom: 12px;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 3;
}

.about-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(143, 216, 255, 0.65);
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    padding: 0;
}

.about-carousel-dot.active {
    background: #8fd8ff;
    box-shadow: 0 0 10px rgba(143, 216, 255, 0.75);
}

/* 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:not(.about-carousel-image) {
    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:not(.about-carousel-image):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;
    perspective: 1400px;
}

.ingresso-card {
    --card-scale: 1;
    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;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    will-change: transform;
    animation: ingressoTiltA 5.8s ease-in-out infinite;
}

.ingresso-card > * {
    position: relative;
    z-index: 2;
}

.ingressos-grid .ingresso-card:nth-child(2) {
    animation-name: ingressoTiltB;
    animation-duration: 7.2s;
    animation-delay: -1.1s;
}

.ingressos-grid .ingresso-card:nth-child(3) {
    animation-name: ingressoTiltC;
    animation-duration: 6.4s;
    animation-delay: -2.2s;
}

.ingresso-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 58%;
    height: 100%;
    background: linear-gradient(102deg, transparent 8%, rgba(143, 216, 255, 0.18) 45%, rgba(255, 255, 255, 0.26) 50%, rgba(143, 216, 255, 0.16) 56%, transparent 92%);
    opacity: 0.55;
    transform: translateX(-170%) skewX(-18deg);
    animation: ingressoVarnishSweep 5.2s ease-in-out infinite;
    pointer-events: none;
    z-index: 3;
}

.ingresso-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('../images/logo-pnf-eventos-oficial.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 145% auto;
    opacity: 0.1;
    filter: grayscale(1) contrast(1.05) brightness(1.15);
    transform: rotate(-27deg) scale(1.08) translateZ(0);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.35s ease;
}

.ingresso-card:hover::before {
    opacity: 0.9;
    animation-duration: 2s;
}

.ingresso-card:hover::after {
    opacity: 0.16;
}

.ingresso-card:hover {
    box-shadow: 0 15px 40px rgba(143, 216, 255, 0.3);
    border-color: var(--primary-color);
}

@keyframes ingressoVarnishSweep {
    0% {
        transform: translateX(-170%) skewX(-18deg);
    }

    55% {
        transform: translateX(240%) skewX(-18deg);
    }

    100% {
        transform: translateX(240%) skewX(-18deg);
    }
}

.ingresso-card,
.ingresso-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px rgba(143, 216, 255, 0.2);
}

.ingresso-card.featured {
    --card-scale: 1.05;
}

@keyframes ingressoTiltA {
    0% {
        transform: perspective(1200px) rotateY(-4.2deg) rotateX(1deg) rotateZ(-0.25deg) translateX(-7px) translateY(0) scale(var(--card-scale));
    }

    25% {
        transform: perspective(1200px) rotateY(1.8deg) rotateX(-0.4deg) rotateZ(0.2deg) translateX(2px) translateY(-4px) scale(var(--card-scale));
    }

    50% {
        transform: perspective(1200px) rotateY(4deg) rotateX(-0.9deg) rotateZ(0.35deg) translateX(8px) translateY(-1px) scale(var(--card-scale));
    }

    75% {
        transform: perspective(1200px) rotateY(-1.3deg) rotateX(0.5deg) rotateZ(-0.2deg) translateX(-2px) translateY(-5px) scale(var(--card-scale));
    }

    100% {
        transform: perspective(1200px) rotateY(-4.2deg) rotateX(1deg) rotateZ(-0.25deg) translateX(-7px) translateY(0) scale(var(--card-scale));
    }
}

@keyframes ingressoTiltB {
    0% {
        transform: perspective(1200px) rotateY(3.2deg) rotateX(0.8deg) rotateZ(0.2deg) translateX(6px) translateY(0) scale(var(--card-scale));
    }

    20% {
        transform: perspective(1200px) rotateY(-0.8deg) rotateX(0deg) rotateZ(-0.15deg) translateX(0) translateY(-5px) scale(var(--card-scale));
    }

    55% {
        transform: perspective(1200px) rotateY(-4.3deg) rotateX(-1deg) rotateZ(-0.35deg) translateX(-8px) translateY(-1px) scale(var(--card-scale));
    }

    80% {
        transform: perspective(1200px) rotateY(1.1deg) rotateX(0.4deg) rotateZ(0.1deg) translateX(1px) translateY(-4px) scale(var(--card-scale));
    }

    100% {
        transform: perspective(1200px) rotateY(3.2deg) rotateX(0.8deg) rotateZ(0.2deg) translateX(6px) translateY(0) scale(var(--card-scale));
    }
}

@keyframes ingressoTiltC {
    0% {
        transform: perspective(1200px) rotateY(-2.8deg) rotateX(0.6deg) rotateZ(-0.18deg) translateX(-5px) translateY(0) scale(var(--card-scale));
    }

    32% {
        transform: perspective(1200px) rotateY(4.5deg) rotateX(-1deg) rotateZ(0.32deg) translateX(9px) translateY(-2px) scale(var(--card-scale));
    }

    58% {
        transform: perspective(1200px) rotateY(0.7deg) rotateX(-0.3deg) rotateZ(0.06deg) translateX(1px) translateY(-5px) scale(var(--card-scale));
    }

    84% {
        transform: perspective(1200px) rotateY(-3.9deg) rotateX(0.8deg) rotateZ(-0.28deg) translateX(-7px) translateY(-1px) scale(var(--card-scale));
    }

    100% {
        transform: perspective(1200px) rotateY(-2.8deg) rotateX(0.6deg) rotateZ(-0.18deg) translateX(-5px) translateY(0) scale(var(--card-scale));
    }
}

@media (prefers-reduced-motion: reduce) {
    .ingressos-grid .ingresso-card {
        animation: none;
        transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(var(--card-scale));
    }
}

.card-header h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.4rem;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    color: var(--text-gray);
    line-height: 1;
    margin-bottom: 0.45rem;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--primary-color);
    font-family: var(--font-primary);
    line-height: 1;
}

.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-features i.porta-info-icon {
    color: var(--primary-color);
    text-shadow: 0 0 6px rgba(143, 216, 255, 0.35);
}

.ingresso-card-locked {
    border-color: rgba(148, 163, 184, 0.35) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
}

.ingresso-card-locked::before {
    opacity: 0.25;
    animation: none;
}

.ingresso-card-locked:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25) !important;
    border-color: rgba(148, 163, 184, 0.35) !important;
    transform: none;
}

.ingresso-lock-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 4;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f8fafc;
    background: linear-gradient(135deg, rgba(100, 116, 139, 0.95) 0%, rgba(71, 85, 105, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
}

.ingresso-lock-badge i {
    font-size: 1rem;
}

.ingresso-card-locked .card-header h3,
.ingresso-card-locked .price .amount {
    opacity: 0.88;
}

.carona-lock-note {
    color: #94a3b8 !important;
    font-size: 0.92rem;
}

.carona-lock-note i {
    color: #cbd5e1;
}

.card-btn-locked {
    cursor: not-allowed;
    opacity: 0.92;
}

.card-btn-locked i {
    margin-right: 6px;
}

.loja-size-picker {
    margin: 0.75rem 0 1rem;
}

.loja-size-label {
    display: block;
    margin-bottom: 0.5rem;
    color: #9eb6c9;
    font-size: 0.85rem;
    font-weight: 600;
}

.loja-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.loja-size-btn {
    min-width: 48px;
    padding: 0.55rem 0.75rem;
    border-radius: 8px;
    border: 1px solid rgba(143, 216, 255, 0.35);
    background: rgba(20, 30, 40, 0.85);
    color: #e8f4ff;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s ease;
}

.loja-size-btn:hover:not(:disabled) {
    border-color: var(--primary-color);
    color: #fff;
}

.loja-size-btn.active {
    background: linear-gradient(135deg, #0077ff, #00a8ff);
    border-color: transparent;
    color: #fff;
}

.loja-size-btn.sold-out,
.loja-size-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

.loja-size-stock {
    margin: 0.6rem 0 0;
    color: #94a3b8;
    font-size: 0.85rem;
}

.loja-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.loja-section {
    padding-top: 7rem;
}

/* ===== LOJA E-COMMERCE (estilo marketplace) ===== */
.shop-page {
    background:
        radial-gradient(ellipse at top, rgba(0, 119, 255, 0.12), transparent 55%),
        linear-gradient(180deg, #0a0f14 0%, #121820 40%, #0d1218 100%);
    min-height: 100vh;
    color: #e8f1f8;
}

.shop-main {
    padding-top: 5.5rem;
    padding-bottom: 4rem;
}

.shop-hero {
    padding: 1.5rem 0 0.5rem;
}

.shop-breadcrumb {
    font-size: 0.85rem;
    color: #8aa0b4;
    margin: 0 0 0.75rem;
}

.shop-breadcrumb a {
    color: #8fd8ff;
    text-decoration: none;
}

.shop-title {
    font-family: 'Orbitron', sans-serif;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    margin: 0 0 0.4rem;
    letter-spacing: 0.04em;
}

.shop-subtitle {
    margin: 0;
    color: #9eb6c9;
    max-width: 640px;
    line-height: 1.5;
}

.shop-catalog {
    margin-top: 1.75rem;
}

.shop-catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.25rem;
}

.shop-tile {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
    color: #102132;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.shop-tile-media {
    position: relative;
    display: block;
    width: 100%;
    aspect-ratio: 1;
    border: 0;
    padding: 0;
    cursor: pointer;
    background: #f3f6f9;
    overflow: hidden;
}

.shop-tile-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-tile-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #dc2626;
    color: #fff;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    padding: 6px 10px;
    border-radius: 6px;
}

.shop-tile-body {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.shop-tile-brand {
    margin: 0;
    font-size: 0.72rem;
    font-weight: 700;
    color: #6b7c8f;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shop-tile-title {
    margin: 0;
    font-size: 1.05rem;
    line-height: 1.3;
    color: #102132;
}

.shop-tile-short {
    margin: 0;
    font-size: 0.88rem;
    color: #5b6f82;
}

.shop-tile-price {
    margin: 0.35rem 0 0.6rem;
    font-size: 1.35rem;
    font-weight: 800;
    color: #0f172a;
}

.shop-tile-cta {
    margin-top: auto;
}

.shop-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    border: 0;
    border-radius: 10px;
    padding: 0.85rem 1rem;
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    transition: 0.15s ease;
}

.shop-btn:disabled {
    opacity: 0.55;
    cursor: not-allowed;
}

.shop-btn-primary {
    background: linear-gradient(135deg, #3483fa, #2968c8);
    color: #fff;
}

.shop-btn-primary:hover:not(:disabled) {
    filter: brightness(1.06);
}

.shop-btn-secondary {
    background: #e8f0fe;
    color: #1a4b9c;
}

.shop-btn-ghost {
    background: transparent;
    color: #5b6f82;
    border: 1px solid #d5deea;
}

.shop-detail {
    margin-top: 1rem;
}

.shop-back-btn {
    background: transparent;
    border: 0;
    color: #8fd8ff;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 1rem;
    padding: 0;
}

.shop-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 1.5rem;
    align-items: start;
}

.shop-gallery {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 0.75rem;
    background: #fff;
    border-radius: 14px;
    padding: 0.85rem;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.shop-thumbs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-height: 520px;
    overflow-y: auto;
}

.shop-thumb {
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 0;
    overflow: hidden;
    cursor: pointer;
    background: #f3f6f9;
    aspect-ratio: 1;
}

.shop-thumb.active {
    border-color: #3483fa;
}

.shop-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.shop-main-media {
    position: relative;
    background: #f3f6f9;
    border-radius: 10px;
    overflow: hidden;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shop-main-media img {
    width: 100%;
    height: 100%;
    max-height: 560px;
    object-fit: contain;
    cursor: zoom-in;
}

.shop-zoom-btn {
    position: absolute;
    right: 12px;
    bottom: 12px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 0;
    background: rgba(16, 24, 40, 0.78);
    color: #fff;
    cursor: pointer;
}

.shop-soldout-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: #dc2626;
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.08em;
    padding: 8px 12px;
    border-radius: 6px;
}

.shop-buybox {
    background: #fff;
    color: #102132;
    border-radius: 14px;
    padding: 1.35rem 1.4rem;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}

.shop-buybox-brand {
    margin: 0;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7c8f;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.shop-buybox-title {
    margin: 0.35rem 0 0.5rem;
    font-size: 1.35rem;
    line-height: 1.3;
}

.shop-buybox-price {
    margin: 0;
    font-size: 1.85rem;
    font-weight: 800;
    color: #0f172a;
}

.shop-buybox-stock {
    margin: 0.4rem 0 0.75rem;
    color: #0f7a3f;
    font-weight: 600;
    font-size: 0.92rem;
}

.shop-buybox-desc {
    margin: 0 0 1rem;
    color: #4d6176;
    font-size: 0.95rem;
    line-height: 1.5;
}

.shop-size-block,
.shop-qty-block {
    margin-bottom: 1rem;
}

.shop-size-block label,
.shop-qty-block label {
    display: block;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 0.45rem;
    color: #1c2e40;
}

.shop-size-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.shop-size-btn {
    min-width: 48px;
    padding: 0.55rem 0.7rem;
    border-radius: 8px;
    border: 1px solid #c5d3e2;
    background: #fff;
    color: #102132;
    font-weight: 700;
    cursor: pointer;
}

.shop-size-btn.active {
    border-color: #3483fa;
    background: #e8f0fe;
    color: #1a4b9c;
}

.shop-size-btn.sold-out,
.shop-size-btn:disabled {
    opacity: 0.4;
    text-decoration: line-through;
    cursor: not-allowed;
}

.shop-qty-control {
    display: inline-flex;
    align-items: center;
    border: 1px solid #c5d3e2;
    border-radius: 10px;
    overflow: hidden;
}

.shop-qty-control button {
    width: 40px;
    height: 40px;
    border: 0;
    background: #f3f6f9;
    font-size: 1.2rem;
    cursor: pointer;
    color: #102132;
}

.shop-qty-control input {
    width: 56px;
    height: 40px;
    border: 0;
    text-align: center;
    font-weight: 700;
    color: #102132;
    background: #fff;
}

.shop-qty-hint {
    margin: 0.4rem 0 0;
    font-size: 0.82rem;
    color: #6b7c8f;
}

.shop-buy-actions {
    display: grid;
    gap: 0.6rem;
    margin: 1rem 0;
}

.shop-trust {
    list-style: none;
    margin: 0.75rem 0 0;
    padding: 0.85rem 0 0;
    border-top: 1px solid #e3ebf4;
}

.shop-trust li {
    display: flex;
    gap: 0.55rem;
    align-items: flex-start;
    font-size: 0.86rem;
    color: #4d6176;
    margin-bottom: 0.45rem;
}

.shop-trust i {
    color: #3483fa;
    margin-top: 2px;
}

.shop-cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1200;
}

.shop-cart-overlay[hidden] {
    display: none !important;
}

.shop-cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(400px, 100%);
    height: 100%;
    background: #fff;
    color: #102132;
    z-index: 1201;
    transform: translateX(105%);
    transition: transform 0.25s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.3);
}

.shop-cart-drawer.open {
    transform: translateX(0);
}

.shop-cart-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.1rem;
    border-bottom: 1px solid #e3ebf4;
}

.shop-cart-head h3 {
    margin: 0;
    font-size: 1.1rem;
}

.shop-cart-close {
    border: 0;
    background: transparent;
    font-size: 1.6rem;
    cursor: pointer;
    color: #5b6f82;
    line-height: 1;
}

.shop-cart-list {
    list-style: none;
    margin: 0;
    padding: 0.75rem 1.1rem;
    overflow-y: auto;
    flex: 1;
}

.shop-cart-item {
    display: flex;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eef3f8;
}

.shop-cart-item strong {
    display: block;
    font-size: 0.92rem;
}

.shop-cart-item span {
    font-size: 0.82rem;
    color: #6b7c8f;
}

.shop-cart-item-actions {
    text-align: right;
}

.shop-cart-remove {
    border: 0;
    background: transparent;
    color: #b42318;
    font-size: 1.2rem;
    cursor: pointer;
}

.shop-cart-empty {
    padding: 2rem 1.1rem;
    color: #6b7c8f;
    text-align: center;
}

.shop-cart-foot {
    padding: 1rem 1.1rem 1.25rem;
    border-top: 1px solid #e3ebf4;
    display: grid;
    gap: 0.55rem;
}

.shop-cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.shop-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 1300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.shop-lightbox.is-open {
    display: flex;
}

.shop-lightbox[hidden] {
    display: none !important;
}

.shop-lightbox img {
    max-width: min(920px, 92vw);
    max-height: 88vh;
    object-fit: contain;
    border-radius: 8px;
}

.shop-lightbox-close {
    position: absolute;
    top: 16px;
    right: 20px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 2.2rem;
    cursor: pointer;
}

.shop-lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    border: 0;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
}

.shop-lightbox-nav.prev { left: 16px; }
.shop-lightbox-nav.next { right: 16px; }

@media (max-width: 900px) {
    .shop-detail-layout {
        grid-template-columns: 1fr;
    }
    .shop-gallery {
        grid-template-columns: 1fr;
    }
    .shop-thumbs {
        flex-direction: row;
        max-height: none;
        overflow-x: auto;
    }
    .shop-thumb {
        width: 68px;
        flex: 0 0 68px;
    }
}

@media (max-width: 600px) {
    .shop-main { padding-top: 4.8rem; }
    .shop-catalog-grid { grid-template-columns: 1fr; }
}

.ingresso-card-soldout {
    position: relative;
    overflow: hidden;
}

.loja-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    margin: 0 auto 0.75rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 119, 255, 0.25), rgba(0, 168, 255, 0.15));
    border: 1px solid rgba(143, 216, 255, 0.35);
    color: var(--primary-color);
    font-size: 1.85rem;
}

.card-header-loja .loja-card-price-hint {
    text-align: center;
}

.ingresso-soldout-ribbon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-14deg);
    z-index: 5;
    padding: 10px 42px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #fff;
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    border: 2px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 28px rgba(220, 38, 38, 0.45);
    pointer-events: none;
}

.ingresso-card-soldout .card-features,
.ingresso-card-soldout .card-header,
.ingresso-card-soldout .card-btn {
    opacity: 0.55;
}

.vagas-aviso-banner {
    grid-column: 1 / -1;
    margin-bottom: 1rem;
    padding: 12px 16px;
    border-radius: 10px;
    background: rgba(14, 165, 233, 0.12);
    border: 1px solid rgba(14, 165, 233, 0.35);
    color: #bae6fd;
    font-size: 0.95rem;
}

.piloto-esgotado-panel {
    grid-column: 1 / -1;
    margin-bottom: 1.5rem;
}

.piloto-esgotado-inner {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 14px;
    border: 2px solid rgba(220, 38, 38, 0.45);
    background: linear-gradient(145deg, rgba(40, 10, 10, 0.85), rgba(20, 8, 8, 0.95));
    box-shadow: 0 12px 40px rgba(220, 38, 38, 0.2);
}

.piloto-esgotado-inner i {
    font-size: 3rem;
    color: #f87171;
    margin-bottom: 1rem;
}

.piloto-esgotado-inner h2 {
    font-family: 'Orbitron', sans-serif;
    color: #fecaca;
    font-size: 1.6rem;
    margin: 0 0 0.75rem;
    letter-spacing: 0.06em;
}

.piloto-esgotado-inner p {
    color: #fca5a5;
    margin: 0 0 1.25rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}

.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-list li.cart-item-locked {
    border-color: rgba(143, 216, 255, 0.35);
    background: rgba(143, 216, 255, 0.14);
}

.ingressos-cart-list li.cart-item-locked span {
    color: #d9ecfb;
}

.piloto-required-ticket-btn[disabled] {
    opacity: 0.72;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.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);
}

.piloto-pagamento-step {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    background: rgba(12, 18, 24, 0.92);
    border: 1px solid rgba(143, 216, 255, 0.22);
    border-radius: 16px;
    padding: 1.5rem;
    box-sizing: border-box;
    overflow-x: hidden;
    min-width: 0;
}

.piloto-mini-ingressos .ingresso-card,
.piloto-mini-ingressos .ingresso-card.featured {
    animation: none !important;
    transform: none !important;
    --card-scale: 1;
}

.piloto-mini-ingressos .ingresso-card::before {
    animation: none;
}

.piloto-pagamento-piloto-nome {
    margin: 0.75rem 0 0;
    color: #b8c9d8;
    font-size: 0.95rem;
}

.piloto-cart-header {
    align-items: flex-start;
}

.piloto-cart-actions {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    min-width: 0;
    width: 100%;
    max-width: 100%;
}

.piloto-cart-actions .btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
}

.piloto-mini-ingressos {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
    margin: 1.25rem 0 0.5rem;
}

.ingresso-card.mini-ingresso {
    padding: 1rem;
    min-height: auto;
}

.ingresso-card.mini-ingresso .card-header h3 {
    font-size: 1rem;
}

.ingresso-card.mini-ingresso .price .amount {
    font-size: 1.6rem;
}

.ingresso-card.mini-ingresso .card-features ul {
    font-size: 0.85rem;
    gap: 0.35rem;
}

.ingresso-card.mini-ingresso .card-btn {
    margin-top: 0.75rem;
    padding: 0.65rem 0.8rem;
    font-size: 0.85rem;
}

@media (max-width: 900px) {
    .piloto-mini-ingressos {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .pilotos-page .pilotos-section,
    .pilotos-page .pilotos-content,
    .pilotos-page .container {
        overflow-x: hidden;
        max-width: 100%;
    }

    .pilotos-page .pilotos-content:has(#piloto-pagamento-step:not([hidden])) .pilotos-info {
        display: none;
    }

    .piloto-pagamento-step {
        padding: 1.25rem 1rem;
        border-radius: 12px;
    }

    .piloto-pagamento-step .ingressos-cart {
        padding: 1rem;
    }

    .piloto-cart-header {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .piloto-pagamento-step .ingressos-cart-footer {
        flex-direction: column;
        align-items: stretch;
    }

    .piloto-pagamento-step .ingressos-cart-footer .btn {
        width: 100%;
        justify-content: center;
    }

    .piloto-pagamento-step .ingressos-cart-list li {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.35rem;
        word-break: break-word;
    }

    .ingresso-card.mini-ingresso .price .amount {
        font-size: 2.2rem;
    }
}

.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 */
.parceiros {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 1.75rem 0 2.5rem;
    background: rgba(8, 14, 22, 0.92);
    overflow: hidden;
    box-sizing: border-box;
}

.parceiros .section-header {
    margin-bottom: 1.35rem;
    padding: 0 1rem;
}

.parceiros .section-title {
    font-size: 1.35rem;
    letter-spacing: 1.5px;
}

.parceiros .section-title::after {
    width: 56px;
    height: 2px;
}

.parceiros-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    pointer-events: none;
    user-select: none;
}

.parceiros-track {
    display: flex;
    width: max-content;
    animation: parceirosScroll 42s linear infinite;
    will-change: transform;
}

.parceiros-group {
    display: flex;
    align-items: center;
    gap: 3.5rem;
    padding: 0.85rem 1.6rem;
}

.parceiro-logo {
    height: 128px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    flex-shrink: 0;
    filter: drop-shadow(0 6px 14px rgba(0, 0, 0, 0.35));
}

@keyframes parceirosScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 860px) {
    .parceiros {
        padding: 1.25rem 0 2rem;
    }

    .parceiros .section-title {
        font-size: 1.15rem;
    }

    .parceiros-group {
        gap: 2.4rem;
        padding: 0.6rem 1.1rem;
    }

    .parceiro-logo {
        height: 96px;
        max-width: 210px;
    }

    .parceiros-track {
        animation-duration: 32s;
    }
}

@media (max-width: 520px) {
    .parceiros .section-title {
        font-size: 1.05rem;
    }

    .parceiro-logo {
        height: 78px;
        max-width: 170px;
    }

    .parceiros-group {
        gap: 1.8rem;
    }

    .parceiros-track {
        animation-duration: 26s;
    }

    .parceiros-marquee {
        mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    }
}

.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: 240px;
    width: auto;
    object-fit: contain;
    max-width: 600px;
    background: transparent;
    display: block;
}

@media (max-width: 768px) {
    .organizers-logos {
        gap: 2rem;
    }
    
    .organizer-logo img {
        height: 180px;
        max-width: 450px;
    }
    
    .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;
    }
}

/* Informacoes Importantes */
.important-info {
    padding: 80px 0;
    background: radial-gradient(circle at 20% 10%, rgba(143, 216, 255, 0.12), rgba(5, 10, 16, 0.95) 48%),
                linear-gradient(180deg, #07111a 0%, #05090d 100%);
}

.important-info-highlight {
    margin: 0 auto 26px;
    max-width: 760px;
    border: 1px solid rgba(143, 216, 255, 0.3);
    background: rgba(18, 31, 45, 0.82);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-align: center;
    color: #dff3ff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}

.important-info-highlight i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.important-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
}

.important-card {
    border: 1px solid rgba(143, 216, 255, 0.25);
    border-radius: 14px;
    background: rgba(14, 23, 33, 0.9);
    padding: 18px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.important-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(143, 216, 255, 0.18);
}

.important-card h3 {
    font-size: 0.95rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.important-card p,
.important-card li {
    color: #d8e7f4;
    font-size: 0.95rem;
}

.important-card ul {
    margin-left: 18px;
    display: grid;
    gap: 7px;
}

.important-info-faq-link {
    margin-top: 16px;
    text-align: center;
    color: #cde6f7;
}

.important-info-faq-link a {
    color: var(--primary-color);
    font-weight: 700;
}

@media (max-width: 768px) {
    .important-info {
        padding: 60px 0;
    }

    .important-info-highlight {
        align-items: flex-start;
        gap: 10px;
    }
}

.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);
    }

    .hero-clip-layer {
        opacity: 0.34;
    }

    .hero-mobile-expo {
        display: block;
    }

    .hero-clip-layer {
        display: none;
    }

    .hero-clip-iframe {
        width: 170vw;
        height: 95.625vw;
    }

    .hero-overlay-sticker {
        top: 9%;
        width: min(96vw, 760px);
        max-height: 35vh;
            z-index: 3;
    }

        .hero-content {
            z-index: 4;
        }

    /* 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;
    }

    .nav-item-admin-mobile {
        display: block;
    }

    .nav-link-admin-mobile {
        color: #8fd8ff;
        font-weight: 700;
    }

    .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;
        align-items: flex-start;
        padding-top: clamp(230px, 44vh, 340px);
        padding-bottom: max(1.8rem, env(safe-area-inset-bottom));
    }

    .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;
    }

    .about-carousel-nav {
        width: 36px;
        height: 36px;
    }

    .about-carousel-image {
        width: 100%;
    }

    .about-carousel-image.active-left {
        left: 0;
    }

    .about-carousel-image.active-right {
        opacity: 0;
        left: 0;
        z-index: 0;
    }

    .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;
    }

    .hero-overlay-sticker {
        top: 8%;
        width: min(98vw, 680px);
        max-height: 30vh;
    }

    .hero-buttons {
        gap: 0.8rem;
    }

    .hero-buttons-wrapper .container {
        min-height: 66vh;
        padding-top: clamp(190px, 42vh, 280px);
        padding-bottom: max(1.2rem, env(safe-area-inset-bottom));
    }

    .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;
}

/* Loading azul entre telas (sem logo) */
html.pnf-loading::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 18, 0.97);
    z-index: 999998;
}

html.pnf-loading::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    width: 52px;
    height: 52px;
    margin: -26px 0 0 -26px;
    border: 3px solid rgba(143, 216, 255, 0.18);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: pnfSpin 0.75s linear infinite;
    z-index: 999999;
    box-shadow: 0 0 24px rgba(143, 216, 255, 0.35);
}

@keyframes pnfSpin {
    to {
        transform: rotate(360deg);
    }
}

/* Loading / transição entre telas */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 10, 18, 0.97);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.35s ease;
    pointer-events: all;
}

.loading.fade-out {
    opacity: 0;
    pointer-events: none !important;
}

.loading-spinner {
    width: 52px;
    height: 52px;
    border: 3px solid rgba(143, 216, 255, 0.18);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: pnfSpin 0.75s linear infinite;
    box-shadow: 0 0 24px rgba(143, 216, 255, 0.35);
}

.loading-brand,
.loading-bar,
.loading-label {
    display: none !important;
}

/* Legado (mantido sem uso visual) */
.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);
    }
}

@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:not(.nav-tagline) {
    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:not(.nav-tagline):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;
    gap: 0.7rem;
    height: 60px;
    overflow: visible;
}

.nav-logo .nav-tagline {
    font-size: 12px;
    letter-spacing: 1.3px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.9;
}

/* 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-container {
        position: relative;
        min-height: 56px;
        display: grid;
        grid-template-columns: auto 1fr auto;
        align-items: center;
        column-gap: 10px;
    }

    .nav-actions {
        justify-self: end;
        gap: 0.45rem;
    }

    .nav-cart-btn {
        width: 38px;
        height: 38px;
    }

    .nav-logo {
        position: static;
        transform: none;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 0.4rem;
        height: 56px;
    }

    .nav-logo .logo-img {
        height: 34px;
    }

    .nav-logo .nav-tagline {
        display: block;
        font-size: 10px;
        line-height: 1.1;
        text-align: center;
        letter-spacing: 1px;
        margin-top: 0;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        white-space: nowrap;
        pointer-events: none;
        z-index: 5;
    }

    .hamburger {
        justify-self: end;
        z-index: 6;
    }
}

@media (max-width: 480px) {
    .nav-logo .logo-img {
        height: 27px;
    }

    .nav-logo .nav-tagline {
        display: block;
        font-size: 8px;
        letter-spacing: 0.9px;
    }
}

/* ===========================================
   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;
    position: relative;
}

.checkbox-label input[type='checkbox'] {
    position: absolute;
    opacity: 0;
    width: 20px;
    height: 20px;
    margin: 0;
    left: 0;
    top: 2px;
    cursor: pointer;
    z-index: 2;
}

.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,
    .piloto-pagamento-step {
        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,
    .piloto-pagamento-step {
        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;
    min-height: 72vh;
    height: auto;
    padding-top: 88px;
    padding-bottom: 2.5rem;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.pilotos-hero .container {
    position: relative;
    z-index: 10;
    width: 100%;
}

.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 35%;
    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);
    max-width: 100%;
}

.hero-info-item span {
    word-break: break-word;
}

.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 {
        min-height: auto;
        height: auto;
        padding-top: calc(76px + env(safe-area-inset-top, 0px));
        padding-bottom: 2rem;
        align-items: flex-end;
    }

    .pilotos-hero-content {
        padding-top: 0.5rem;
    }

    .pilotos-hero-title {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
        line-height: 1.15;
    }

    .pilotos-hero-title i {
        font-size: 2rem;
    }

    .pilotos-hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 1.25rem;
    }

    .pilotos-hero-info {
        gap: 0.75rem;
    }

    .hero-info-item {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
        justify-content: center;
        text-align: center;
    }

    .pilotos-page:has(#piloto-pagamento-step:not([hidden])) .pilotos-hero {
        min-height: 0;
        padding-top: calc(72px + env(safe-area-inset-top, 0px));
        padding-bottom: 1rem;
    }

    .pilotos-page:has(#piloto-pagamento-step:not([hidden])) .pilotos-hero-info {
        display: none;
    }

    .pilotos-page:has(#piloto-pagamento-step:not([hidden])) .pilotos-hero-subtitle {
        margin-bottom: 0.5rem;
    }

    .pilotos-page:has(#piloto-pagamento-step:not([hidden])) .pilotos-hero-title {
        font-size: 1.45rem;
    }

    .pilotos-page:has(#piloto-pagamento-step:not([hidden])) .pilotos-section {
        padding-top: 1.5rem;
    }
}

@media (max-width: 480px) {
    .pilotos-hero {
        padding-bottom: 1.75rem;
    }

    .pilotos-hero-title {
        font-size: 1.65rem;
    }

    .pilotos-hero-info {
        flex-direction: column;
        align-items: stretch;
        gap: 0.65rem;
        width: 100%;
    }

    .hero-info-item {
        width: 100%;
        box-sizing: border-box;
    }

    .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;
}

/* Admin — KPI filtros compactos (pagamentos, pilotos, ingressos) */
.admin-kpi-page .admin-header {
    padding: 10px 16px;
}

.admin-kpi-page .admin-content {
    padding: 8px 16px 12px;
}

.admin-kpi-page .admin-content section {
    padding: 0;
}

.admin-kpi-page .kpi-filters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
    margin: 0 0 12px;
    padding: 0;
}

.admin-kpi-page .kpi-card.kpi-filter-btn {
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    border: 1px solid rgba(143, 216, 255, 0.32);
    border-radius: 12px;
    padding: 14px;
    color: #d9e9f7;
    width: 100%;
    min-width: 0;
    min-height: 78px;
    box-sizing: border-box;
    text-align: left;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    transition: border-color 0.2s ease, color 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.admin-kpi-page .kpi-card.kpi-filter-btn:hover {
    border-color: rgba(143, 216, 255, 0.55);
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.admin-kpi-page .kpi-card.kpi-filter-btn.active {
    border-color: #38bdf8;
    background: transparent !important;
    box-shadow: none !important;
}

.admin-kpi-page .kpi-card h3 {
    margin: 0 0 6px;
    font-size: 11px;
    color: #8fd8ff;
    letter-spacing: 1px;
    text-transform: uppercase;
    line-height: 1.25;
    white-space: normal;
}

.admin-kpi-page .kpi-card p {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
}

.admin-kpi-page .kpi-card.kpi-filter-btn.active h3 {
    color: #bae6fd;
}

.admin-kpi-page .admin-toolbar-compact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}

.admin-kpi-page .admin-search-input {
    flex: 1 1 280px;
    min-width: 220px;
    max-width: 520px;
    border-radius: 10px;
    border: 1px solid #304356;
    background: transparent;
    color: #e9f2f9;
    padding: 8px 12px;
    font-size: 13px;
}

.admin-kpi-page .admin-search-input:focus {
    outline: none;
    border-color: #38bdf8;
}

.admin-kpi-page .admin-search-input::placeholder {
    color: #7a8fa3;
}

.admin-kpi-page .export-actions {
    margin-bottom: 8px;
    gap: 8px;
}

.admin-kpi-page #dashboard-panels {
    margin-bottom: 8px;
}

.admin-kpi-page .dashboard-panels .charts-grid {
    margin-bottom: 8px;
}

/* 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: flex-start;
    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;
    min-width: 0;
}

.toast-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    color: #333;
}

.toast-message {
    font-size: 13px;
    color: #666;
    line-height: 1.45;
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
}

.error-message {
    color: #ff6b6b;
    font-size: 0.875rem;
    line-height: 1.45;
    margin-top: 0.35rem;
    word-break: break-word;
    overflow-wrap: anywhere;
    white-space: normal;
}

.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;
    }
}

@media (max-width: 768px) {
    @keyframes toastSlideIn {
        from {
            transform: translateY(-16px);
            opacity: 0;
        }
        to {
            transform: translateY(0);
            opacity: 1;
        }
    }

    @keyframes toastSlideOut {
        from {
            transform: translateY(0);
            opacity: 1;
        }
        to {
            transform: translateY(-16px);
            opacity: 0;
        }
    }
}

/* Responsivo */
@media (max-width: 768px) {
    .toast-container {
        top: max(72px, calc(env(safe-area-inset-top, 0px) + 12px));
        right: 12px;
        left: 12px;
    }

    .toast {
        min-width: 0;
        max-width: none;
        width: 100%;
        padding: 14px 16px;
    }
}

@media (max-width: 480px) {
    .toast-container {
        top: max(68px, calc(env(safe-area-inset-top, 0px) + 8px));
        right: 10px;
        left: 10px;
    }

    .toast {
        min-width: 0;
        max-width: none;
        width: 100%;
    }

    .toast-icon {
        width: 34px;
        height: 34px;
        font-size: 17px;
    }

    .toast-title {
        font-size: 13px;
    }

    .toast-message {
        font-size: 12px;
    }
}
/* ==========================================
   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);
}

.coupon-apply-btn {
    width: 100%;
    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;
    text-transform: none;
    letter-spacing: normal;
}

.coupon-apply-btn:hover {
    background: rgba(143, 216, 255, 0.2);
    border-color: var(--primary-color);
}

.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;
    }
}

/* Botão flutuante WhatsApp */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 99990;
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.12) inset;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.16) inset;
    color: #fff;
}

.whatsapp-float i {
    font-size: 1.65rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 480px) {
    .whatsapp-float {
        right: 16px;
        bottom: max(16px, env(safe-area-inset-bottom, 16px));
        width: 50px;
        height: 50px;
    }
}

/* ==========================================
   INSCRIÇÃO PILOTO CORTESIA / VIP
   ========================================== */

.pilotos-cortesia-page .pilotos-cortesia-overlay {
    background: linear-gradient(135deg, rgba(0, 10, 24, 0.88) 0%, rgba(0, 80, 120, 0.75) 55%, rgba(14, 165, 233, 0.45) 100%);
}

.piloto-cortesia-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 14px;
    border-radius: 999px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
}

.piloto-cortesia-badge i {
    font-size: 0.9rem;
}

.pilotos-cortesia-info .info-card-cortesia {
    border-color: rgba(14, 165, 233, 0.35);
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.08) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.pilotos-cortesia-info .info-card-cortesia i {
    color: #38bdf8;
}

.warning-box-cortesia {
    border-color: rgba(56, 189, 248, 0.45);
    background: rgba(14, 165, 233, 0.1);
}

.warning-box-cortesia i {
    color: #38bdf8;
}

.cortesia-vestimenta-note {
    margin: 0 0 10px;
    color: #9eb6c9;
    font-size: 0.9rem;
}

.pilotos-cortesia-content .vestimenta-obrigatoria {
    display: grid;
    gap: 8px;
}

.btn-cortesia-submit {
    background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
    border: none;
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.35);
}

.btn-cortesia-submit:hover:not(:disabled) {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    transform: translateY(-2px);
}

.piloto-cortesia-success {
    text-align: center;
    padding: 36px 24px 40px;
    border-radius: 16px;
    border: 2px solid rgba(56, 189, 248, 0.4);
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.12) 0%, rgba(0, 0, 0, 0.35) 100%);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.piloto-cortesia-success-icon {
    width: 88px;
    height: 88px;
    margin: 0 auto 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(34, 197, 94, 0.15);
    border: 2px solid rgba(34, 197, 94, 0.45);
}

.piloto-cortesia-success-icon i {
    font-size: 2.8rem;
    color: #22c55e;
}

.piloto-cortesia-success h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.35rem;
    margin-bottom: 12px;
    color: #fff;
}

.piloto-cortesia-success > p {
    color: #b8d4e8;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 24px;
}

.piloto-cortesia-success-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 28px;
    max-width: 480px;
    text-align: left;
}

.piloto-cortesia-success-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    color: #9eb6c9;
    font-size: 0.92rem;
    line-height: 1.5;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.piloto-cortesia-success-list li:last-child {
    border-bottom: none;
}

.piloto-cortesia-success-list i {
    color: #38bdf8;
    margin-top: 3px;
    flex-shrink: 0;
}

.piloto-cortesia-hero--success {
    min-height: 220px;
}

.piloto-cortesia-hero--success .pilotos-hero-content {
    padding-bottom: 24px;
}

@media (max-width: 768px) {
    .pilotos-cortesia-page .pilotos-hero {
        min-height: auto;
        padding: 72px 0 28px;
    }

    .piloto-cortesia-badge {
        font-size: 0.72rem;
        padding: 7px 14px;
    }

    .pilotos-cortesia-info {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .piloto-cortesia-success {
        padding: 28px 16px 32px;
    }

    .piloto-cortesia-success h3 {
        font-size: 1.15rem;
    }

    .piloto-cortesia-success-icon {
        width: 72px;
        height: 72px;
    }

    .piloto-cortesia-success-icon i {
        font-size: 2.2rem;
    }

    .pilotos-cortesia-page .inscricao-form,
    .pilotos-cortesia-page .piloto-cortesia-success {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .pilotos-cortesia-page .form-row {
        flex-direction: column;
        gap: 0;
    }

    .btn-cortesia-submit {
        width: 100%;
    }
}

