@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css');
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;700&family=Space+Grotesk:wght@300;400;700&family=Orbitron:wght@400;700;900&family=Playfair+Display:wght@400;700;800&display=swap');




:root {
    --primary: #ff0080;
    --secondary: #00ff88;
    --accent: #00aaff;
    --gold: #FFD700;
    --purple: #8A2BE2;
    --bg-dark: #0a0a0a;
    --bg-darker: #050505;
    --text-primary: #ffffff;
    --text-secondary: #b3b3b3;
    --border: rgba(255, 255, 255, 0.1);
    --glow-pink: 0 0 30px #ff0080;
    --glow-green: 0 0 30px #00ff88;
    --glow-gold: 0 0 30px #FFD700;
    --danger: #ff3030;
    --success: #00ff88;
    --warning: #ffa500;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --primary-gradient: linear-gradient(135deg, #ff0080, #ff6bb3);
    --secondary-gradient: linear-gradient(135deg, #00ff88, #4caf50);
    --dark-gradient: linear-gradient(135deg, #050505, #0a0a0a);
    --accent-color: #ff6bb3;
    --accent-glow: 0 0 10px #ff6bb3;
    --text-muted: #888;
    --blue: #004aad;
    --vh: 1vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===== CORREÇÕES GLOBAIS PARA FUNDO ESCURO ===== */
html {
    background-color: #050505 !important;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background-color: #050505 !important;
    background-image: 
        radial-gradient(circle at 20% 80%, #1a0033 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, #330066 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, #001a33 0%, transparent 50%),
        linear-gradient(135deg, var(--bg-darker) 0%, var(--bg-dark) 100%) !important;
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    color: var(--text-primary);
    overflow-x: hidden;
    position: relative;
}

/* CYBERPUNK GRID BACKGROUND */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 0, 128, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 128, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    animation: grid-pulse 8s ease-in-out infinite;
}

@keyframes grid-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.02); }
}

/* FLOATING PARTICLES */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: float-particles 8s ease-in-out infinite;
    opacity: 0.6;
}

.particle:nth-child(odd) {
    background: radial-gradient(circle, var(--primary), transparent);
    width: 4px;
    height: 4px;
}

.particle:nth-child(even) {
    background: radial-gradient(circle, var(--secondary), transparent);
    width: 3px;
    height: 3px;
}

@keyframes float-particles {
    0%, 100% { transform: translateY(100vh) scale(0) rotate(0deg); opacity: 0; }
    50% { transform: translateY(-10vh) scale(1) rotate(180deg); opacity: 1; }
}

/* ==================== AGE VERIFICATION STYLES ==================== */

.age-verification-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.warning-icon {
    font-size: 4rem;
    color: var(--warning);
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 20px rgba(255, 165, 0, 0.6));
}

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

.age-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--danger), var(--warning));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 30px rgba(255, 48, 48, 0.5);
}

.age-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-weight: 500;
}

.warning-text {
    background: linear-gradient(145deg, rgba(255, 48, 48, 0.1), rgba(255, 165, 0, 0.05));
    backdrop-filter: blur(25px);
    border: 2px solid var(--danger);
    border-radius: 20px;
    padding: 2rem;
    margin-bottom: 2rem;
    text-align: left;
    max-width: 600px;
}

.warning-text h3 {
    color: var(--danger);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.warning-text p {
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.buttons-container {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.enter-btn, .exit-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1.2rem 2rem;
    border-radius: 15px;
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    min-width: 200px;
    justify-content: center;
}

.enter-btn {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--text-primary);
    border: 2px solid var(--secondary);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.4);
}

.enter-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 255, 136, 0.6);
}

.exit-btn {
    background: linear-gradient(135deg, var(--danger), #cc0000);
    color: var(--text-primary);
    border: 2px solid var(--danger);
    box-shadow: 0 15px 35px rgba(255, 48, 48, 0.4);
}

.exit-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 48, 48, 0.6);
}

.legal-notice {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 1.5rem;
    max-width: 600px;
    text-align: left;
}

.legal-notice h4 {
    color: var(--gold);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-notice p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ========== FIM DA PAGINA DE VERIFICACAO DE IDADE ==========  */

/* ========== CABECALHO UNIVERSAL ==========  */

/* === NAVBAR === */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(5, 5, 5, 0.98) !important;
    backdrop-filter: blur(25px);
    border-bottom: 2px solid var(--primary);
    padding: 15px 0;
    z-index: 2000;
    transition: all 0.4s ease;
}

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

.nav-logo {
    font-family: 'Orbitron', monospace;
    font-size: 24px;
    font-weight: 900;
    background: linear-gradient(45deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-decoration: none;
}

.nav-logo::before {
    content: '✨';
    margin-right: 10px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 5px;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: 'JetBrains Mono', monospace;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    background: rgba(255, 0, 128, 0.1);
    border: 1px solid var(--primary);
}

.mobile-toggle {
    display: none;
    background: var(--primary);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 12px 16px;
    border-radius: 8px;
    z-index: 2200;
    position: relative;
}

/* === SOCIAL BAR === */

.social-bar {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.98) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 0, 128, 0.3);
    padding: 10px 0;
    z-index: 1500;
}

.social-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.social-icon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

  /* ===== VIP ACCESS BANNER ===== */
        .vip-banner {
            position: fixed;
            top: 80px;
            margin-top: 50px;
            margin-bottom: 50px;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, var(--primary), var(--gold));
            color: white;
            text-align: center;
            padding: 12px 20px;
            z-index: 1400;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 700;
            font-size: 1rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            animation: vip-pulse 2s ease-in-out infinite;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        @keyframes vip-pulse {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 128, 0.5); }
            50% { box-shadow: 0 0 40px rgba(255, 0, 128, 0.8); }
        }

        .vip-banner:hover {
            background-color : var(--accent);
            color: var(--text-primary);
           
        }

/* == BADGES */
.verification-badges {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
    flex-wrap: wrap;
    padding-top: 200px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border-radius: 20px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge.verified {
    background: linear-gradient(135deg, #00ff88, #00cc6a);
    color: #000;
}

.badge.recent {
    background: linear-gradient(135deg, var(--primary), #e6007a);
    color: white;
}

.badge.premium {
    background: linear-gradient(135deg, var(--gold), #ffc700);
    color: #000;
}

/* === QUICK ACCESS === */
.quick-access-bar {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    z-index: 2000;
}

.quick-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.quick-btn.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.quick-btn.telegram {
    background: linear-gradient(135deg, #0088cc, #005f99);
}

.quick-btn.onlyfans {
    background: linear-gradient(135deg, #00aaff, #0088cc);
}

.quick-btn.vip-access {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    animation: vip-access-pulse 3s ease-in-out infinite;
}

@keyframes vip-access-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(255, 0, 128, 0.3); }
    50% { box-shadow: 0 4px 30px rgba(255, 0, 128, 0.6); }
}

.quick-btn:hover {
    transform: scale(1.5);
}

/*  ===== HEADER ===== */
.header {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.access-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--danger), var(--warning));
    border: 2px solid var(--danger);
    border-radius: 50px;
    padding: 12px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 20px;
    animation: urgent-pulse 1.5s ease-in-out infinite;
}

.access-badge2 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(100deg, var(--danger), var(--blue));
    border: 2px solid var(--danger);
    border-radius: 50px;
    padding: 12px 24px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 20px;
    animation: urgent-pulse 1.5s ease-in-out infinite;
}

.access-badge2:hover {
    background: var(--blue);
    color: white;
    border-color: var(--primary);
}   

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

.header-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 5px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--gold), var(--accent));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-flow 3s ease-in-out infinite;
    line-height: 1.1;
}

@keyframes gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.header-subtitle {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header-subtitle:hover {
background-color: var(--accent);
color: white;

}

.header-subtitle a {

    text-decoration: none;
    font-weight: 300px;
    
}

.header-subtitle a:hover {

    text-decoration: none;
    font-weight: 300px;
    color:white;
}

/* STATS */
.stats-section {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 40px auto;
    max-width: 1400px;
    padding: 0 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 15px 35px rgba(255, 0, 128, 0.3);
}

.stat-number {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

/* === MAIN CONTAINER === */

/* === PAGINA GALERIA DE FOTOS === */
.main-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.main-container2 {
    max-width: 1400px;
    padding: 0 20px 40px;
    margin-top: 120px;
}
/* ======= GALLERY ======= */

.gallery-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.preview-section {
    background: linear-gradient(145deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
    backdrop-filter: blur(25px);
    border: 2px solid var(--secondary);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.preview-section::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--secondary), var(--gold), var(--secondary));
    border-radius: 23px;
    opacity: 0.2;
    animation: preview-pulse 4s ease-in-out infinite;
    z-index: -1;
}

@keyframes preview-pulse {
    0%, 100% { opacity: 0.2; }
    50% { opacity: 0.4; }
}

.preview-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.preview-text {
    color: var(--text-primary);
    font-size: 1rem;
    line-height: 1.6;
}

.preview-highlight {
    color: var(--gold);
    font-weight: 700;
    background: rgba(255, 215, 0, 0.1);
    padding: 2px 8px;
    border-radius: 5px;
}

.gallery-section2 {

margin-top: 20px;

}
/* ======= GALLERY GRID ======= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.gallery-grid2 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-top: 20px;
    margin-bottom:20px;
}


.photo-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(25px);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 12px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    width: 100%;
    cursor: pointer;
}

.photo-card2 {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(25px);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 12px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    width: 100%;
    cursor: pointer;
    margin-top: 20px;
}

.photo-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary), var(--gold), var(--secondary));
    border-radius: 23px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.photo-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--primary);
}

.photo-card:hover::before {
    opacity: 0.3;
    filter: blur(15px);
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.photo-preview {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.free-badge, .locked-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.free-badge {
    background: var(--secondary);
    color: #000;
    animation: free-pulse 2s ease-in-out infinite;
}

.locked-badge {
    background: var(--primary);
    color: white;
}

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

.free-photo:hover {
    border-color: var(--secondary);
    box-shadow: 0 15px 35px rgba(0, 255, 136, 0.3);
}

.locked-photo .photo-preview {
    filter: blur(6px);
}

.photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.8), rgba(0, 0, 0, 0.5));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    border-radius: 12px;
    cursor: pointer;
}

.locked-photo:hover .photo-overlay {
    opacity: 1;
}

.photo-icon {
    font-size: 2rem;
    color: white;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-3px); }
    75% { transform: translateX(3px); }
}

/* ======= LIGHTBOX ======= */

.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    animation: lightboxFadeIn 0.3s ease-out;
}

.lightbox.active {
    display: flex;
}

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

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(255, 0, 128, 0.5);
    animation: lightboxImageIn 0.4s ease-out;
}

@keyframes lightboxImageIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lightbox-info {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    padding: 15px 25px;
    margin-top: 20px;
    text-align: center;
}

.lightbox-title {
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-weight: bold;
    margin-bottom: 5px;
}

.lightbox-description {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-nav:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-50%) scale(1.1);
}

.lightbox-prev {
    left: -80px;
}

.lightbox-next {
    right: -80px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    min-height: 100vh;
    min-height: calc(var(--vh, 1vh) * 100);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 180px 20px 50px;
    background-color: transparent !important;
    z-index: 5;
}

/* LAYOUT SPLIT */
.hero-split-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    gap: 60px;
    z-index: 10;
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 600px;
    text-align: left;
}

.hero-photo-right {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

/* FOTO VANESSA */
.vanessa-photo {
    width: 100%;
    max-width: 450px;
    height: auto;
    border-radius: 20px;
    filter: drop-shadow(0 0 40px rgba(255, 0, 128, 0.6));
    transition: all 0.5s ease;
    animation: photo-glow 6s ease-in-out infinite;
    position: relative;
    z-index: 2;
}

@keyframes photo-glow {
    0%, 100% { 
        filter: drop-shadow(0 0 40px rgba(255, 0, 128, 0.6));
        transform: scale(1);
    }
    50% { 
        filter: drop-shadow(0 0 60px rgba(255, 215, 0, 0.8));
        transform: scale(1.02);
    }
}

.vanessa-photo:hover {
    filter: drop-shadow(0 0 80px rgba(255, 215, 0, 1));
    transform: scale(1.05);
}

/* MOLDURA CYBERPUNK */
.photo-frame {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 3px solid transparent;
    border-radius: 25px;
    background: linear-gradient(45deg, var(--primary), var(--blue), var(--danger), var(--accent));
    background-size: 400% 400%;
    z-index: 1;
    animation: frame-rotate 10s linear infinite;
}

@keyframes frame-rotate {
    0% { background-position: 0% 50%; }
    100% { background-position: 400% 50%; }
}

/* HERO CONTENT */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 255, 136, 0.2);
    border: 2px solid var(--secondary);
    border-radius: 50px;
    padding: 12px 24px;
    margin-bottom: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--secondary);
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.4);
    animation: badge-pulse 3s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(0, 255, 136, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(0, 255, 136, 0.8); }
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, 
        var(--primary), 
        var(--secondary), 
        var(--gold), 
        var(--accent), 
        var(--primary));
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: hero-gradient-flow 4s ease-in-out infinite;
    text-shadow: 0 0 60px rgba(255, 0, 128, 0.5);
    line-height: 1.1;
}

@keyframes hero-gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-subtitle:hover {
    background-color: var(--accent);
    color: white;
            




}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    color: var(--text-primary);
    max-width: 500px;
}

/* CTA BUTTONS */
.hero-cta-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.hero-cta {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.hero-cta:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(255, 0, 128, 0.5),
        0 0 60px rgba(255, 0, 128, 0.4);
    border-color: var(--gold);
}

.hero-cta:hover::before {
    left: 100%;
}

.hero-cta.secondary {
    background: linear-gradient(135deg, transparent, rgba(255, 255, 255, 0.1));
    border: 2px solid var(--secondary);
    color: var(--secondary);
}

.hero-cta.secondary:hover {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
    color: var(--text-primary);
}

/* =====  SEÇÃO FOTO + TEXTO ======= */

.street-section {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.3);
}

/* == street section 7 */


.street-section7 {
  position: relative;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25; /* ou mais, se quiser mais destaque no vídeo */
}

/* Garante que o conteúdo fique por cima do vídeo */
.street-container {
  position: relative;
  z-index: 1;
}
/* fim */


.street-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    margin-top: 15px;
}

.street-photo-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.street-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
    object-fit: cover;
}

.street-content {
    flex: 1;
    max-width: 600px;
}

.street-title {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--secondary), var(--accent), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}


.street-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.street-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #1a9059;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}



.street-button:hover {
    background-color: #63f385;
    color: #142fdd;
}

.street-button2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #d70a0a;
    color: black;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 900;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-bottom: 20px;
}


.street-button2:hover {
    background-color: #0c54ee;
    color: #ffffff;
     box-shadow: 0 15px 40px rgba(0, 136, 204, 0.5);
    transform: translateY(-5px) scale(1.05);
   
}

.street-button3 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #0a82d7;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}


.street-button3:hover {
    background-color: #0c54ee;
    color: #ffffff;
     box-shadow: 0 15px 40px rgba(0, 136, 204, 0.5);
    transform: translateY(-5px) scale(1.05);
   
}

.street-button4 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #159e3a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}


.street-button4:hover {
    background-color: #067841;
    color: #ffffff;
     box-shadow: 20px 15px 40px rgba(236, 239, 240, 0.5);
    transform: translateY(-5px) scale(1.05);
   
}


.street-title2 {
    font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: linear-gradient(45deg, var(--primary), var(--warning), var(--danger));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.street-title4 {

 font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: var(--danger);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.street-title5 {

 font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: var(--accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.street-title6 {

 font-family: 'Orbitron', monospace;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    background: var(--secondary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}






/* ===== FIM DA SECAO DE FOTO + texto ===== */



             /* =====  SEÇÃO FOTO + VIDEO ======= */

        .street-section {
            padding: 80px 20px;
            background: rgba(0, 0, 0, 0.3);
        }

        .street-container {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 60px;
        }

        .street-photo-container {
            flex: 1;
            display: flex;
            justify-content: center;
        }

       .street-photo {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.4);
    object-fit: cover; /* Adicione esta linha para melhor ajuste do vídeo */
}

        .street-content {
            flex: 1;
            max-width: 600px;
        }

        .street-title {
            font-family: 'Orbitron', monospace;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 25px;
            background: linear-gradient(45deg, var(--secondary), var(--accent), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            line-height: 1.2;
        }

        .street-description {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-primary);
            margin-bottom: 30px;
        }

      .street-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: #1a9059;
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.street-button:hover {
    background-color: #63f385;
    color: #142fdd;
}
/* ===== fim das fotos + videos  ===== */

/* ===== VIP ACCESS CTA SECTION ===== */
.vip-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, 
        rgba(255, 0, 128, 0.1), 
        rgba(255, 215, 0, 0.1));
    margin: 60px 0;
    position: relative;
    overflow: hidden;
}

.vip-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, var(--primary), var(--gold), var(--primary));
    opacity: 0.1;
    animation: vip-bg-flow 6s ease-in-out infinite;
}

@keyframes vip-bg-flow {
    0%, 100% { opacity: 0.1; }
    50% { opacity: 0.2; }
}

.vip-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.vip-cta-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vip-cta-subtitle {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-weight: 300;
}

.vip-cta-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.vip-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--primary), var(--gold), var(--secondary));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 900;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4);
    position: relative;
    overflow: hidden;
    animation: vip-cta-pulse 4s ease-in-out infinite;
}

@keyframes vip-cta-pulse {
    0%, 100% { 
        box-shadow: 0 15px 40px rgba(255, 0, 128, 0.4);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 20px 60px rgba(255, 0, 128, 0.6);
        transform: scale(1.02);
    }
}

.vip-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.vip-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 60px rgba(255, 0, 128, 0.8),
        0 0 80px rgba(255, 215, 0, 0.6);
}

.vip-cta-button:hover::before {
    left: 100%;
}

.btn-telegram {
padding: 15px 20px;
    background: linear-gradient(135deg, #0088cc, #005f99);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 50%;
    margin: 0 auto;
    display: block;
    padding: 12px 20px;

}

.btn-telegram a {

    text-decoration: none;
    align-items: center;
    display: flex;
    justify-content: center;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
}


.btn-telegram:hover {
    background: linear-gradient(135deg, #00aaff, #0088cc);
    color: white;
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.5);
    transform: translateY(-5px) scale(1.05);

}


.btn-nudes {
    padding: 15px 20px;
    background: red;
    color: black;
    text-decoration: none;
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    width: 50%;
    margin: 0 auto;
    display: block;
    padding: 12px 20px;

}

.btn-nudes a {

    text-decoration: none;
    align-items: center;
    display: flex;
    justify-content: center;
    color: white;
    padding: 10px 20px;
    font-weight: bold;
}

.btn-nudes:hover {
    background: black;
    color: red;
    box-shadow: 0 15px 40px rgba(0, 136, 204, 0.5);
    transform: translateY(-5px) scale(1.05);

}

/* ===== INICIO DO FOOTER GLOBAL!!! ===== */

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, 
        rgba(5, 5, 5, 0.98), 
        rgba(10, 10, 20, 0.95));
    backdrop-filter: blur(25px);
    border-top: 2px solid var(--primary);
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent, 
        var(--primary), 
        var(--gold), 
        var(--secondary), 
        var(--primary), 
        transparent);
    animation: footer-scan 6s ease-in-out infinite;
}

@keyframes footer-scan {
    0%, 100% { opacity: 0.6; transform: translateX(-100%); }
    50% { opacity: 1; transform: translateX(100%); }
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 30px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section {
    text-align: left;
}

.footer-section h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '▶';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: 0.7rem;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary);
    text-shadow: 0 0 15px var(--primary);
    transform: translateX(5px);
}

.footer-links a:hover::before {
    transform: scale(1.2);
}

.footer-social-extended {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.footer-social-link:hover::before {
    left: 100%;
}

.footer-social-link:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    color: var(--primary);
    box-shadow: 0 5px 20px rgba(255, 0, 128, 0.3);
}

.contact-info {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 20px;
    margin-top: 20px;
}

.contact-info h4 {
    color: var(--primary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

.contact-item i {
    color: var(--primary);
    width: 20px;
}

.contact-item a {
    text-decoration: none;
    font-weight: 700px;
}

.contact-item a:hover {
    color: #00aaff;

}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-legal {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-legal a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* ===== CORREÇÕES ESPECÍFICAS PARA MOBILE E DEPLOY ===== */

/* Overlay para garantir fundo escuro */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(5, 5, 5, 0.1);
    pointer-events: none;
    z-index: -3;
}

/* Forçar tema escuro */
@media (prefers-color-scheme: light) {
    body {
        background-color: #050505 !important;
        color: #ffffff !important;
    }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
    .mobile-toggle { 
        display: block !important;
        position: relative;
        z-index: 2200;
    }
    
    .nav-menu {
        position: fixed !important;
        top: 73px;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: calc(100vh - 73px);
        background: rgba(5, 5, 5, 0.98) !important;
        backdrop-filter: blur(25px) !important;
        flex-direction: column;
        padding: 30px 20px;
        gap: 15px;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        border-left: 2px solid var(--primary);
        z-index: 2100;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    }
    
    .nav-menu.active { 
        right: 0 !important; 
    }

    .nav-link {
        width: 100%;
        padding: 15px 20px;
        margin-bottom: 5px;
        border-radius: 10px;
        text-align: left;
    }

    .social-bar {
        position: fixed;
        background: rgba(10, 10, 10, 0.98) !important;
        z-index: 1500;
        margin-top: 0px;

    }

    .vip-banner {
        margin-top: 80px !important;
        position: fixed;
        z-index: 1400;
        font-size: 0.85rem;
        padding: 8px 15px;
        margin-bottom: 20px;
        
    }

    .hero-section {
        padding-top: 200px !important;
        padding-bottom: 50px;
        min-height: calc(var(--vh, 1vh) * 100);
    }

    .hero-split-container {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .hero-content-left {
        max-width: 100%;
        text-align: center;
    }

    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.1;
        margin-bottom: 15px;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 20px;
    }

    .hero-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }

    .hero-cta-container {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        padding: 12px 25px;
        font-size: 0.8rem;
    }

       .vip-banner {
                top: 110px;
                font-size: 0.9rem;
                padding: 10px 15px;
            }

    .hero-photo-right {
        order: -1;
    }

    .vanessa-photo {
        max-width: 300px;
        width: 90%;
    }

    .photo-frame {
        top: -15px;
        left: -15px;
        right: -15px;
        bottom: -15px;
    }

    .quick-access-bar {
        bottom: 20px;
        right: 15px;
        gap: 8px;
    }

    .quick-btn {
        width: 50px;
        height: 50px;
    }

    .quick-btn img {
        width: 30px !important;
        height: 30px !important;
    }

    .social-container {
        justify-content: flex-start;
        overflow-x: auto;
        padding: 0 15px;
        gap: 8px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .social-container::-webkit-scrollbar {
        display: none;
    }

    .social-link {
        flex-shrink: 0;
        padding: 6px 10px;
        font-size: 0.65rem;
        white-space: nowrap;
    }

    .social-icon {
        width: 16px;
        height: 16px;
    }

    .verification-badges {
        padding-top: 220px;
        gap: 8px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .badge {
        padding: 6px 12px;
        font-size: 0.65rem;
        flex-shrink: 0;
    }

    .vip-cta-title {
        font-size: 2rem;
    }

    .platforms-title,
    .gallery-title {
        font-size: 2rem;
    }

    .platforms-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .street-container {
        flex-direction: column;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom-content {
        flex-direction: column;
        gap: 15px;
    }

    /* Otimizar animações para mobile */
    .particles,
    .photo-frame {
        animation-duration: 8s;
    }

    .hero-title {
        animation-duration: 6s;
    }

    * {
        transition-duration: 0.2s !important;
    }
    
    .nav-menu {
        transition-duration: 0.4s !important;
    }
}

/* ===== CORREÇÕES PARA TELAS MUITO PEQUENAS ===== */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem !important;
    }

    .hero-subtitle {
        font-size: 0.9rem !important;
    }

    .hero-description {
        font-size: 0.85rem;
    }

    .hero-section {
        padding-top: 220px !important;
    }

    .vip-banner {
        top: 130px;
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-logo {
        font-size: 1.2rem;
    }
}

/* ===== CORREÇÕES PARA LANDSCAPE MOBILE ===== */
@media (max-width: 768px) and (orientation: landscape) {
    .hero-section {
        padding-top: 160px !important;
        min-height: 100vh;
    }

    .hero-split-container {
        flex-direction: row;
        align-items: center;
    }

    .hero-content-left {
        text-align: left;
    }

    .hero-photo-right {
        order: 0;
    }

    .vanessa-photo {
        max-width: 250px;
    }
}

/* ===== CORREÇÃO PARA NOTCH/SAFE AREA ===== */
@supports (padding: max(0px)) {
    .navbar {
        padding-left: max(30px, env(safe-area-inset-left));
        padding-right: max(30px, env(safe-area-inset-right));
    }

    .nav-container {
        padding-left: max(30px, env(safe-area-inset-left));
        padding-right: max(30px, env(safe-area-inset-right));
    }
}

/* ===== EVITAR ZOOM NO INPUT (iOS) ===== */
input, select, textarea {
    font-size: 16px !important;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--bg-darker);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(var(--primary), var(--gold));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(var(--gold), var(--primary));
}

::selection {
    background: rgba(255, 0, 128, 0.3);
    color: var(--text-primary);
}

/* ===== LOADING ===== */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loader {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border);
    border-top: 3px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== LOADING SCREEN ADICIONAL ===== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #050505 !important;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    pointer-events: none;
}


/* PAGINA DE V I D E O S */

* ===== ADIÇÕES CSS PARA PÁGINA DE VÍDEOS ===== */
/* Adicione este código ao final do seu arquivo style.css */

/* Seção de vídeos */
.videos-section {
    padding: 60px 20px;
    background: transparent;
    position: relative;
    z-index: 5;
}

.videos-container {
    max-width: 1400px;
    margin: 0 auto;
}

.videos-header {
    text-align: center;
    margin-bottom: 60px;
}

.flash-offer {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--danger), var(--warning));
    border: 2px solid var(--danger);
    border-radius: 50px;
    padding: 12px 30px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-primary);
    margin-bottom: 30px;
    animation: flash-pulse 2s ease-in-out infinite;
}

@keyframes flash-pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(255, 48, 48, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 40px rgba(255, 48, 48, 0.8); }
}

.videos-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.videos-subtitle {
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 40px;
    font-weight: 600;
}

.recent-access {
    background: linear-gradient(145deg, rgba(0, 255, 136, 0.1), rgba(0, 255, 136, 0.05));
    backdrop-filter: blur(25px);
    border: 2px solid var(--secondary);
    border-radius: 20px;
    padding: 20px;
    margin-bottom: 40px;
    text-align: center;
}

.recent-access h3 {
    color: var(--secondary);
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.recent-list {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: 'JetBrains Mono', monospace;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.countdown-item {
    background: linear-gradient(135deg, var(--primary), var(--gold));
    border: 2px solid var(--primary);
    border-radius: 15px;
    padding: 20px;
    text-align: center;
    min-width: 100px;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.countdown-number {
    font-family: 'Orbitron', monospace;
    font-size: 2.5rem;
    font-weight: 900;
    display: block;
    color: var(--text-primary);
}

.countdown-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 0.9rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-primary);
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.video-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(25px);
    border: 2px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.video-card::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary), var(--gold), var(--secondary));
    border-radius: 23px;
    opacity: 0;
    transition: all 0.5s ease;
    z-index: -1;
}

.video-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
}

.video-card:hover::before {
    opacity: 0.3;
    filter: blur(15px);
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 0, 128, 0.8), rgba(0, 0, 0, 0.5));
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.play-button {
    width: 60px;
    height: 60px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transform: scale(0.8);
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.6);
}

.video-card:hover .play-button {
    transform: scale(1);
}

.play-button::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 15px solid var(--text-primary);
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    margin-left: 5px;
}

.video-info {
    padding: 25px;
}

.video-title {
    font-family: 'Orbitron', monospace;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-primary);
    text-transform: uppercase;
}

.video-description {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.video-stats {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-family: 'JetBrains Mono', monospace;
}

.links-section {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(25px);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 60px;
}

.links-title {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    background: linear-gradient(45deg, var(--secondary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    background: linear-gradient(135deg, var(--primary), var(--gold));
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-family: 'JetBrains Mono', monospace;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
}

.link-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 128, 0.5);
    text-decoration: none;
    color: var(--text-primary);
}

.link-button.secondary {
    background: linear-gradient(135deg, var(--secondary), var(--accent));
}

.link-button.secondary:hover {
    box-shadow: 0 20px 40px rgba(0, 255, 136, 0.5);
}

/* Mobile responsivo para vídeos */
@media (max-width: 768px) {
    .videos-section {
        padding: 40px 15px;
    }
    
    .videos-title {
        font-size: 2rem;
    }
    
    .videos-subtitle {
        font-size: 1.1rem;
    }
    
    .countdown {
        gap: 15px;
    }
    
    .countdown-item {
        min-width: 80px;
        padding: 15px;
    }
    
    .countdown-number {
        font-size: 2rem;
    }
    
    .videos-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .videos-title {
        font-size: 1.5rem;
    }
    
    .videos-subtitle {
        font-size: 1rem;
    }
    
    .countdown-item {
        min-width: 70px;
        padding: 12px;
    }
    
    .countdown-number {
        font-size: 1.8rem;
    }
}


/* ===== FIM DA PAGINA DE V I D E O S ===== */
/* ===== style da pagina de leads ===== */

 /* SEÇÃO DE CONTEÚDO */
        .content-section {
            padding: 20px 0;
        }

        /* HEADER COM COUNTDOWN */
        .header-section {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .countdown-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--danger), var(--warning));
            border: 2px solid var(--danger);
            border-radius: 50px;
            padding: 12px 24px;
            margin-bottom: 20px;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            color: var(--text-primary);
            box-shadow: 0 0 30px rgba(255, 48, 48, 0.6);
            animation: urgent-pulse 1.5s ease-in-out infinite;
        }

        @keyframes urgent-pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 0 30px rgba(255, 48, 48, 0.6); }
            50% { transform: scale(1.05); box-shadow: 0 0 50px rgba(255, 48, 48, 0.9); }
        }

        .main-title {
            font-family: 'Orbitron', monospace;
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 20px;
            background: linear-gradient(45deg, 
                var(--primary), 
                var(--secondary), 
                var(--gold), 
                var(--accent), 
                var(--primary));
            background-size: 400% 400%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradient-flow 3s ease-in-out infinite;
            text-shadow: 0 0 60px rgba(255, 0, 128, 0.5);
            line-height: 1.1;
        }

        @keyframes gradient-flow {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .sub-title {
            font-size: 1.4rem;
            color: var(--gold);
            margin-bottom: 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* SEÇÃO DE VÍDEOS */
        .videos-section {
            margin-bottom: 40px;
        }

        .videos-title {
            font-family: 'Orbitron', monospace;
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 30px;
            background: linear-gradient(45deg, var(--secondary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .videos-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }

        .video-card {
            background: linear-gradient(145deg, 
                rgba(255, 255, 255, 0.08), 
                rgba(255, 255, 255, 0.02));
            backdrop-filter: blur(25px);
            border: 2px solid var(--border);
            border-radius: 20px;
            padding: 15px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            aspect-ratio: 9/16;
        }

        .video-card::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, var(--primary), var(--gold), var(--secondary));
            border-radius: 23px;
            opacity: 0;
            transition: all 0.5s ease;
            z-index: -1;
        }

        .video-card:hover {
            transform: translateY(-5px) scale(1.02);
            border-color: var(--primary);
        }

        .video-card:hover::before {
            opacity: 0.3;
            filter: blur(15px);
        }

        .video-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary), var(--purple));
            border-radius: 15px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .video-placeholder::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-placeholder::after {
            content: '▶';
            position: absolute;
            top: 50%;
            left: 52%;
            transform: translate(-50%, -50%);
            font-size: 24px;
            color: var(--text-primary);
            z-index: 2;
        }

        .video-info {
            margin-top: 10px;
        }

        .video-title {
            font-size: 0.9rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 5px;
        }

        .video-description {
            font-size: 0.8rem;
            color: var(--text-secondary);
            line-height: 1.3;
        }

        /* COPY PERSUASIVO */
        .persuasive-copy {
            background: linear-gradient(145deg, 
                rgba(0, 255, 136, 0.1), 
                rgba(0, 255, 136, 0.05));
            backdrop-filter: blur(25px);
            border: 2px solid var(--secondary);
            border-radius: 20px;
            padding: 30px;
            margin-bottom: 30px;
            position: relative;
            overflow: hidden;
        }

        .persuasive-copy::before {
            content: '';
            position: absolute;
            top: -3px;
            left: -3px;
            right: -3px;
            bottom: -3px;
            background: linear-gradient(45deg, var(--secondary), var(--gold), var(--secondary));
            border-radius: 23px;
            opacity: 0.2;
            animation: copy-pulse 4s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes copy-pulse {
            0%, 100% { opacity: 0.2; }
            50% { opacity: 0.4; }
        }

        .copy-text {
            font-size: 1.1rem;
            line-height: 1.7;
            color: var(--text-primary);
            text-align: center;
        }

        .copy-highlight {
            color: var(--secondary);
            font-weight: 700;
            text-transform: uppercase;
        }

        .copy-urgency {
            color: var(--gold);
            font-weight: 700;
            background: rgba(255, 215, 0, 0.1);
            padding: 2px 8px;
            border-radius: 5px;
        }

        /* FORMULÁRIO LATERAL */
        .form-section {
            position: sticky;
            top: 20px;
            height: fit-content;
        }

        .form-container {
            background: linear-gradient(145deg, 
                rgba(255, 255, 255, 0.12), 
                rgba(255, 255, 255, 0.06));
            backdrop-filter: blur(25px);
            border: 3px solid var(--primary);
            border-radius: 25px;
            padding: 40px 30px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 0 50px rgba(255, 0, 128, 0.4);
        }

        .form-container::before {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            background: linear-gradient(45deg, var(--primary), var(--gold), var(--secondary), var(--accent));
            border-radius: 30px;
            opacity: 0.3;
            animation: form-glow 3s ease-in-out infinite;
            z-index: -1;
        }

        @keyframes form-glow {
            0%, 100% { opacity: 0.3; filter: blur(10px); }
            50% { opacity: 0.6; filter: blur(20px); }
        }

        .form-header {
            text-align: center;
            margin-bottom: 30px;
        }

        .form-title {
            font-family: 'Orbitron', monospace;
            font-size: 1.8rem;
            font-weight: 900;
            background: linear-gradient(45deg, var(--primary), var(--gold));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .form-subtitle {
            color: var(--secondary);
            font-size: 1rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .benefits-list {
            list-style: none;
            margin-bottom: 25px;
        }

        .benefits-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 12px;
            color: var(--text-primary);
            font-size: 0.95rem;
            font-weight: 500;
        }

        .benefits-list li::before {
            content: '✨';
            font-size: 1.2rem;
            filter: drop-shadow(0 0 5px var(--gold));
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 600;
            color: var(--text-primary);
            text-transform: uppercase;
            letter-spacing: 1px;
            font-size: 0.85rem;
        }

        .form-input,
        .form-select {
            width: 100%;
            padding: 15px 20px;
            background: rgba(255, 255, 255, 0.08);
            border: 2px solid var(--border);
            border-radius: 10px;
            color: var(--text-primary);
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-input:focus,
        .form-select:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 20px rgba(255, 0, 128, 0.3);
            background: rgba(255, 255, 255, 0.12);
        }

        .form-input::placeholder {
            color: var(--text-secondary);
        }

        .form-submit {
            width: 100%;
            padding: 20px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: var(--text-primary);
            border: none;
            border-radius: 15px;
            font-family: 'JetBrains Mono', monospace;
            font-weight: 900;
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.4s ease;
            box-shadow: 0 15px 35px rgba(255, 0, 128, 0.4);
            position: relative;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .form-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: left 0.6s ease;
        }

        .form-submit:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 
                0 25px 50px rgba(255, 0, 128, 0.6),
                0 0 80px rgba(255, 0, 128, 0.4);
        }

        .form-submit:hover::before {
            left: 100%;
        }

        .security-note {
            font-size: 0.8rem;
            color: var(--text-secondary);
            text-align: center;
            line-height: 1.4;
        }

        .security-note i {
            color: var(--secondary);
            margin-right: 5px;
        }

        /* COUNTDOWN TIMER */
        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 20px 0;
        }

        .countdown-item {
            background: linear-gradient(135deg, var(--danger), var(--warning));
            padding: 15px 10px;
            border-radius: 10px;
            text-align: center;
            min-width: 60px;
            border: 2px solid var(--danger);
            box-shadow: 0 0 20px rgba(255, 48, 48, 0.4);
        }

        .countdown-number {
            font-family: 'Orbitron', monospace;
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--text-primary);
            display: block;
        }

        .countdown-label {
            font-size: 0.7rem;
            color: var(--text-primary);
            text-transform: uppercase;
            font-weight: 600;
            letter-spacing: 1px;
        }

        /* SOCIAL PROOF */
        .social-proof {
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 20px;
            margin-top: 20px;
            text-align: center;
        }

        .social-proof-title {
            color: var(--gold);
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 10px;
            text-transform: uppercase;
        }

        .social-proof-text {
            color: var(--text-secondary);
            font-size: 0.85rem;
            line-height: 1.4;
        }

        /* RESPONSIVE */
        @media (max-width: 1024px) {
            .main-container {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .form-section {
                position: relative;
                top: 0;
            }
            
            .videos-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .main-container {
                padding: 20px 15px;
            }
            
            .main-title {
                font-size: 2.2rem;
            }
            
            .videos-grid {
                grid-template-columns: 1fr;
                gap: 15px;
            }
            
            .form-container {
                padding: 30px 20px;
            }
            
            .countdown-timer {
                gap: 10px;
            }
            
            .countdown-item {
                min-width: 50px;
                padding: 10px 8px;
            }
            
            .countdown-number {
                font-size: 1.4rem;
            }
        }

        /* SCROLLBAR */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: var(--bg-darker);
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(var(--primary), var(--gold));
            border-radius: 6px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(var(--gold), var(--primary));
        }

        ::selection {
            background: rgba(255, 0, 128, 0.3);
            color: var(--text-primary);
        }

        /* SUCCESS MESSAGE */
        .success-message {
            background: linear-gradient(135deg, rgba(0, 255, 136, 0.2), rgba(0, 255, 136, 0.1));
            border: 2px solid var(--success);
            border-radius: 15px;
            padding: 20px;
            margin-top: 20px;
            color: var(--success);
            font-family: 'JetBrains Mono', monospace;
            font-weight: 600;
            text-align: center;
            display: none;
            animation: success-slide 0.5s ease-out;
        }

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

        .success-message.show {
            display: block;
        }

        .main-container {
            margin-top: 20px;
        }

        .gallery-section {
            margin-top: 20px;
        }