/* ========================================
   3D BROZZ - APRESENTAÇÃO MODERNA GAMING
   Design System & Variables
======================================== */

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

:root {
    /* Cores Principais - Tema Gaming/3D */
    --primary-red: #e60012;
    --neon-red: #ff0055;
    --neon-pink: #ff006e;
    --secondary-red: #ff4757;
    --gold: #ffd700;
    --gold-dark: #d4a800;
    
    /* Cores Neon/Tech */
    --neon-blue: #00d9ff;
    --neon-purple: #8b00ff;
    --neon-green: #39ff14;
    --neon-orange: #ff6b00;
    --cyber-blue: #0ff;
    --cyber-pink: #f0f;
    
    /* Neutros */
    --dark: #0a0a0a;
    --dark-light: #1a1a1a;
    --dark-blue: #0d1117;
    --gray: #666666;
    --gray-light: #f0f0f0;
    --white: #ffffff;
    
    /* Sombras 3D */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.25);
    --shadow-neon-red: 0 0 20px rgba(230, 0, 18, 0.5), 0 0 40px rgba(230, 0, 18, 0.3);
    --shadow-neon-blue: 0 0 20px rgba(0, 217, 255, 0.5), 0 0 40px rgba(0, 217, 255, 0.3);
    --shadow-neon-gold: 0 0 30px rgba(255, 215, 0, 0.6), 0 0 60px rgba(255, 215, 0, 0.4);
    
    /* Animações */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--dark);
    color: var(--dark);
    overflow-x: hidden;
    line-height: 1.6;
}

/* ========================================
   SLIDE BASE
======================================== */

.slide {
    min-height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.slide.active {
    display: flex;
    animation: slideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.container {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.container-full {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    padding-bottom: 120px;
    position: relative;
    z-index: 2;
    max-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Estilização da scrollbar */
.container-full::-webkit-scrollbar {
    width: 10px;
}

.container-full::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 10px;
    margin: 10px 0;
}

.container-full::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--neon-red), var(--neon-blue), var(--gold));
    border-radius: 10px;
    box-shadow: 
        0 0 10px rgba(0, 217, 255, 0.6),
        inset 0 0 5px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(0, 217, 255, 0.3);
}

.container-full::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--neon-blue), var(--gold), var(--neon-pink));
    box-shadow: 
        0 0 15px rgba(255, 215, 0, 0.8),
        inset 0 0 8px rgba(255, 255, 255, 0.5);
}

.container-full::-webkit-scrollbar-thumb:active {
    background: linear-gradient(180deg, var(--gold), var(--neon-red), var(--neon-blue));
}

/* ========================================
   SLIDE 1 - CAPA IMPACTANTE 3D/GAMING
======================================== */

.slide-cover {
    background: radial-gradient(circle at 20% 50%, #1a0a2e 0%, var(--dark) 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.cover-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(0, 217, 255, 0.03) 49%, rgba(0, 217, 255, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 0, 85, 0.03) 49%, rgba(255, 0, 85, 0.03) 51%, transparent 52%);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        background-position: 0 0, 0 0;
    }
    100% {
        background-position: 60px 60px, -60px 60px;
    }
}

.cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(230, 0, 18, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 217, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    filter: blur(60px);
    animation: float 20s infinite ease-in-out;
}

.shape1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--neon-red), transparent);
    border-radius: 50%;
    top: -250px;
    right: -100px;
    animation-delay: 0s;
    opacity: 0.4;
}

.shape2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--neon-blue), transparent);
    border-radius: 50%;
    bottom: -200px;
    left: -100px;
    animation-delay: 5s;
    opacity: 0.3;
}

.shape3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, var(--gold), transparent);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    animation-delay: 10s;
    opacity: 0.25;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(50px, 30px) scale(1.1);
    }
    50% {
        transform: translate(-30px, 60px) scale(0.9);
    }
    75% {
        transform: translate(60px, -30px) scale(1.05);
    }
}

.cover-content {
    text-align: center;
    position: relative;
    z-index: 3;
}

.logo-image {
    max-width: 320px;
    height: auto;
    margin-bottom: 40px;
    animation: logoGlow 3s infinite alternate, logoFloat 4s ease-in-out infinite;
    transform-style: preserve-3d;
    position: relative;
}

@keyframes logoGlow {
    0% {
        filter: 
            drop-shadow(0 0 20px rgba(230, 0, 18, 0.8))
            drop-shadow(0 0 40px rgba(230, 0, 18, 0.6))
            drop-shadow(0 0 60px rgba(230, 0, 18, 0.4))
            drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    }
    33% {
        filter: 
            drop-shadow(0 0 25px rgba(0, 217, 255, 0.8))
            drop-shadow(0 0 50px rgba(0, 217, 255, 0.6))
            drop-shadow(0 0 75px rgba(0, 217, 255, 0.4))
            drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    }
    66% {
        filter: 
            drop-shadow(0 0 30px rgba(255, 215, 0, 0.9))
            drop-shadow(0 0 60px rgba(255, 215, 0, 0.7))
            drop-shadow(0 0 90px rgba(255, 215, 0, 0.5))
            drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    }
    100% {
        filter: 
            drop-shadow(0 0 20px rgba(255, 0, 110, 0.8))
            drop-shadow(0 0 40px rgba(255, 0, 110, 0.6))
            drop-shadow(0 0 60px rgba(255, 0, 110, 0.4))
            drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) rotateY(5deg);
    }
}

.cover-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: 5px;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(0, 217, 255, 0.6),
        0 0 30px rgba(0, 217, 255, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.5);
    animation: titlePulse 4s ease-in-out infinite;
}

@keyframes titlePulse {
    0%, 100% {
        text-shadow: 
            0 0 10px rgba(255, 255, 255, 0.8),
            0 0 20px rgba(0, 217, 255, 0.6),
            0 0 30px rgba(0, 217, 255, 0.4),
            0 5px 15px rgba(0, 0, 0, 0.5);
    }
    50% {
        text-shadow: 
            0 0 15px rgba(255, 255, 255, 1),
            0 0 30px rgba(230, 0, 18, 0.8),
            0 0 45px rgba(230, 0, 18, 0.6),
            0 5px 15px rgba(0, 0, 0, 0.5);
    }
}

.cover-subtitle {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 60px;
}

.highlight-red {
    font-size: inherit;
    font-weight: inherit;
    color: var(--primary-red);
    text-transform: uppercase;
    letter-spacing: inherit;
    text-shadow: 
        0 0 20px rgba(230, 0, 18, 0.6),
        0 0 40px rgba(230, 0, 18, 0.3);
}

.highlight-text {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 300;
    letter-spacing: 2px;
    text-shadow: 
        0 0 10px rgba(255, 215, 0, 0.5),
        0 3px 10px rgba(0, 0, 0, 0.5);
}

.business-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.badge {
    display: flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(0, 217, 255, 0.3);
    padding: 20px 30px;
    border-radius: 20px;
    transition: var(--transition-normal);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 217, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: badgeShine 3s infinite;
}

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

.badge:hover {
    background: linear-gradient(145deg, rgba(230, 0, 18, 0.3), rgba(0, 217, 255, 0.2));
    border-color: var(--neon-blue);
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.5),
        0 0 60px rgba(230, 0, 18, 0.3),
        0 12px 40px rgba(0, 0, 0, 0.4);
}

.badge-icon {
    font-size: 2rem;
}

.badge-label {
    display: block;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.badge-value {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
}

.scroll-indicator {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    animation: bounce 2s infinite;
    z-index: 100;
    pointer-events: none;
    transition: opacity 0.5s ease;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 10px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.scroll-indicator-bottom {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, rgba(230, 0, 18, 0.9), rgba(255, 0, 85, 0.9));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 999;
    box-shadow: 
        0 0 20px rgba(230, 0, 18, 0.6),
        0 5px 20px rgba(0, 0, 0, 0.3);
    animation: pulseIndicator 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.scroll-indicator-top {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, rgba(0, 217, 255, 0.9), rgba(139, 0, 255, 0.9));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 999;
    box-shadow: 
        0 0 20px rgba(0, 217, 255, 0.6),
        0 5px 20px rgba(0, 0, 0, 0.3);
    animation: pulseIndicator 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(230, 0, 18, 0.3);
}

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

.scroll-indicator-bottom {
    position: fixed;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, rgba(230, 0, 18, 0.9), rgba(255, 0, 85, 0.9));
    color: var(--white);
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 999;
    box-shadow: 
        0 0 20px rgba(230, 0, 18, 0.6),
        0 5px 20px rgba(0, 0, 0, 0.3);
    animation: pulseIndicator 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 255, 0.3);
}

.scroll-indicator-top {
    position: fixed;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(145deg, rgba(0, 217, 255, 0.9), rgba(139, 0, 255, 0.9));
    color: var(--white);
    padding: 10px 20px;
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    z-index: 999;
    box-shadow: 
        0 0 20px rgba(0, 217, 255, 0.6),
        0 5px 20px rgba(0, 0, 0, 0.3);
    animation: pulseIndicator 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(230, 0, 18, 0.3);
}

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

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.mouse-scroll {
    width: 26px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    margin: 15px auto;
    position: relative;
    background: transparent;
}

.mouse-wheel {
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: wheel 2s infinite;
}

@keyframes wheel {
    0%, 100% {
        top: 8px;
        opacity: 1;
    }
    50% {
        top: 22px;
        opacity: 0.5;
    }
}

/* ========================================
   SLIDE 2 - MERCADO
======================================== */

.slide-market {
    background: radial-gradient(circle at 20% 50%, #1a0a2e 0%, var(--dark) 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.slide-market .cover-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(0, 217, 255, 0.03) 49%, rgba(0, 217, 255, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 0, 85, 0.03) 49%, rgba(255, 0, 85, 0.03) 51%, transparent 52%);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
}

.slide-market .cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 80% 80%, rgba(230, 0, 18, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 20% 20%, rgba(0, 217, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    z-index: 1;
}

.slide-market .animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.grid-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(230, 0, 18, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 0, 18, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
}

.slide-header-center {
    text-align: center;
    margin-bottom: 50px;
    padding: 0 20px;
}

.slide-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: linear-gradient(145deg, var(--neon-red), var(--neon-pink));
    color: var(--white);
    border-radius: 50%;
    line-height: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    box-shadow: 
        0 0 20px rgba(230, 0, 18, 0.6),
        0 0 40px rgba(0, 217, 255, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.5);
}

.section-title-modern {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--white);
    margin-bottom: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 
        0 0 10px rgba(255, 255, 255, 0.8),
        0 0 20px rgba(0, 217, 255, 0.6),
        0 0 30px rgba(0, 217, 255, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.5);
}

.section-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.stats-hero-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stat-card-modern {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 8px;
    background: linear-gradient(90deg, var(--neon-red), var(--neon-pink), var(--primary-red));
    background-size: 200% 100%;
    animation: gradientSlide 3s linear infinite;
}

.stat-card-modern.stat-gold::before {
    background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--neon-orange));
    background-size: 200% 100%;
}

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

.stat-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 0 40px rgba(230, 0, 18, 0.4),
        0 0 80px rgba(0, 217, 255, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--neon-blue);
}

.stat-icon-box {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: iconFloat 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.stat-number-large {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--neon-red), var(--neon-pink), var(--primary-red));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
    filter: drop-shadow(0 0 20px rgba(230, 0, 18, 0.3));
}

.stat-card-modern.stat-gold .stat-number-large {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--neon-orange));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

.stat-number-large .symbol,
.stat-number-large .currency,
.stat-number-large .number {
    display: inline;
}

.stat-number-large .symbol,
.stat-number-large .currency {
    font-size: 3rem;
}

.stat-description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 500;
    padding: 0 10px;
}

.stat-source {
    font-size: 0.8rem;
    color: var(--gray);
    font-style: italic;
    opacity: 0.8;
}

.stat-content {
    position: relative;
    z-index: 1;
}

.market-visual-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.visual-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 0 40px rgba(230, 0, 18, 0.3),
        0 0 80px rgba(0, 217, 255, 0.2),
        0 20px 60px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(0, 217, 255, 0.3);
    transition: all 0.4s ease;
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    min-height: 400px;
}

.visual-image-container:hover {
    transform: translateY(-5px);
    border-color: var(--neon-blue);
    box-shadow: 
        0 0 50px rgba(0, 217, 255, 0.5),
        0 0 100px rgba(230, 0, 18, 0.3),
        0 25px 70px rgba(0, 0, 0, 0.4);
}

.visual-image-container img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 400px;
    object-fit: cover;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: var(--white);
    padding: 20px;
    font-size: 1rem;
    font-weight: 600;
}

/* ========================================
   CARROSSEL DE FOTOS DA LOJA
======================================== */

.store-gallery {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.gallery-slide {
    display: none;
    width: 100%;
    height: 100%;
    animation: fadeIn 0.8s ease-in-out;
}

.gallery-slide.active {
    display: block;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(1.05);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Controles do Carrossel */
.gallery-control {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    color: var(--white);
    border: 2px solid rgba(0, 217, 255, 0.5);
    padding: 15px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.gallery-control:hover {
    background: rgba(0, 217, 255, 0.3);
    border-color: var(--neon-blue);
    box-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

.gallery-prev {
    left: 20px;
}

.gallery-next {
    right: 20px;
}

/* Indicadores (dots) */
.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.5);
    padding: 10px 20px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.gallery-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.gallery-dots .dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.gallery-dots .dot.active {
    background: var(--neon-blue);
    border-color: var(--white);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.8);
    transform: scale(1.3);
}

.market-highlights {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    backdrop-filter: blur(20px);
    padding: 35px;
    border-radius: 20px;
    box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.2),
        0 10px 40px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(0, 217, 255, 0.2);
}

.highlights-title {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 700;
    text-align: center;
}

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

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 240, 240, 0.8));
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.highlight-item:hover {
    background: linear-gradient(145deg, var(--gold), #ffd700);
    transform: translateX(8px) scale(1.02);
    border-color: var(--gold-dark);
    box-shadow: 
        0 0 20px rgba(255, 215, 0, 0.5),
        0 5px 20px rgba(0, 0, 0, 0.2);
}

.check-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(145deg, var(--neon-red), var(--primary-red));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
    font-size: 1rem;
    box-shadow: 0 0 15px rgba(230, 0, 18, 0.4);
}

.highlight-item p {
    font-size: 1.05rem;
    line-height: 1.5;
    color: var(--dark);
}

/* ========================================
   SLIDE 3 - SOBRE
======================================== */

.slide-about {
    background: radial-gradient(circle at 20% 50%, #1a0a2e 0%, var(--dark) 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.slide-about .cover-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(0, 217, 255, 0.03) 49%, rgba(0, 217, 255, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 0, 85, 0.03) 49%, rgba(255, 0, 85, 0.03) 51%, transparent 52%);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

.slide-about .cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 90%, rgba(230, 0, 18, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 90% 10%, rgba(0, 217, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.slide-about .animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.split-container {
    display: grid;
    grid-template-columns: 45% 55%;
    min-height: 100vh;
    position: relative;
    z-index: 1;
}

.split-left {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    padding: 80px 60px;
    position: relative;
}

.slide-header-vertical {
    margin-bottom: 60px;
}

.slide-number-vertical {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary-red);
    border-radius: 50%;
    line-height: 60px;
    text-align: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin-bottom: 30px;
}

.title-vertical {
    font-size: 4rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -2px;
}

.image-showcase {
    position: relative;
    height: 600px;
}

.showcase-main {
    width: 100%;
    height: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.showcase-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.showcase-badge-float {
    position: absolute;
    top: 30px;
    right: -30px;
    background: var(--white);
    padding: 25px;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.rating-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.rating-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
}

.rating-stars {
    font-size: 1.2rem;
    margin: 10px 0;
}

.rating-count {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Estilização da scrollbar no split-right */
.split-right::-webkit-scrollbar {
    width: 8px;
}

.split-right::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.split-right::-webkit-scrollbar-thumb {
    background: linear-gradient(145deg, var(--primary-red), var(--gold));
    border-radius: 10px;
}

.split-right::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(145deg, var(--neon-red), var(--neon-blue));
}

.showcase-small {
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 300px;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 5px solid var(--white);
}

.showcase-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-right {
    background: var(--white);
    padding: 80px 60px;
    overflow-y: auto;
}

.info-stack {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card-box {
    padding: 35px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.info-card-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.card-white {
    background: var(--gray-light);
}

.card-gradient {
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    color: var(--white);
}

.card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.card-icon-round {
    width: 60px;
    height: 60px;
    background: var(--white);
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
}

.card-gradient .card-icon-round {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.card-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
}

.data-list-modern {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.data-row {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.data-row:last-child {
    border-bottom: none;
}

.data-row .label {
    font-size: 0.95rem;
    color: var(--gray);
    font-weight: 500;
}

.data-row .value {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 600;
    text-align: right;
}

.checklist-styled {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.checklist-styled li {
    padding-left: 35px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.5;
}

.checklist-styled li::before {
    content: '✓';
    position: absolute;
    left: 0;
    width: 25px;
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.metric-box {
    background: var(--gray-light);
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-normal);
}

.metric-box:hover {
    background: var(--gold);
    transform: scale(1.05);
}

.metric-number-big {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary-red);
    line-height: 1;
    margin-bottom: 10px;
}

.metric-label-small {
    font-size: 0.9rem;
    color: var(--dark);
    font-weight: 500;
}

/* ========================================
   SLIDE 3 - POR QUE A 3D BROZZ
======================================== */

.slide-about {
    background: radial-gradient(circle at 30% 30%, #1a0520 0%, var(--dark) 50%, #050510 100%);
}

/* Grid de Showcase */
.slide-header-icon {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-top: 10px;
    filter: drop-shadow(0 0 15px rgba(230, 0, 18, 0.4)) drop-shadow(0 0 30px rgba(0, 217, 255, 0.2));
    animation: floatIcon 3s ease-in-out infinite;
}

@keyframes floatIcon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Grid de Produtos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto 35px auto;
}

.product-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 28px 22px;
    text-align: center;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 25px rgba(0, 217, 255, 0.1);
}

.product-card.product-highlight {
    border-color: rgba(230, 0, 18, 0.25);
    background: linear-gradient(145deg, rgba(230, 0, 18, 0.06), rgba(255, 0, 85, 0.03));
}

.product-card.product-highlight:hover {
    border-color: rgba(230, 0, 18, 0.5);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 30px rgba(230, 0, 18, 0.15);
}

.product-icon-wrap {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    background: linear-gradient(145deg, rgba(230, 0, 18, 0.15), rgba(255, 0, 85, 0.08));
    border: 1px solid rgba(230, 0, 18, 0.15);
    font-size: 2.4rem;
}

.product-icon-wrap.product-icon-blue {
    background: linear-gradient(145deg, rgba(0, 217, 255, 0.15), rgba(0, 150, 255, 0.08));
    border-color: rgba(0, 217, 255, 0.15);
}

.product-icon-wrap.product-icon-green {
    background: linear-gradient(145deg, rgba(0, 255, 136, 0.15), rgba(0, 200, 100, 0.08));
    border-color: rgba(0, 255, 136, 0.15);
}

.product-icon-wrap.product-icon-purple {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.15), rgba(130, 60, 220, 0.08));
    border-color: rgba(168, 85, 247, 0.15);
}

.product-icon-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    filter: brightness(1.1);
}

.product-card .showcase-badge {
    margin-bottom: 12px;
}

.product-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.product-card p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
    margin: 0;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto 35px auto;
}

.showcase-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    transition: all 0.4s ease;
    cursor: default;
}

.showcase-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 217, 255, 0.4);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(0, 217, 255, 0.1);
}

.showcase-card.showcase-featured {
    border-color: rgba(230, 0, 18, 0.3);
    background: linear-gradient(145deg, rgba(230, 0, 18, 0.06), rgba(255, 0, 85, 0.03));
}

.showcase-card.showcase-featured:hover {
    border-color: rgba(230, 0, 18, 0.6);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(230, 0, 18, 0.15);
}

/* Imagem do card */
.showcase-img {
    width: 220px;
    min-height: 170px;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px;
}

.showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.showcase-card:hover .showcase-img img {
    transform: scale(1.08);
}

.showcase-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: linear-gradient(145deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
}

.showcase-img-placeholder span {
    font-size: 3rem;
}

.showcase-img-placeholder small {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Info do card */
.showcase-info {
    padding: 22px 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.showcase-badge {
    display: inline-block;
    width: fit-content;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    background: rgba(230, 0, 18, 0.15);
    color: #ff4444;
    border: 1px solid rgba(230, 0, 18, 0.3);
}

.showcase-badge.badge-blue {
    background: rgba(0, 217, 255, 0.1);
    color: var(--neon-blue);
    border-color: rgba(0, 217, 255, 0.25);
}

.showcase-badge.badge-green {
    background: rgba(0, 255, 136, 0.1);
    color: #00ff88;
    border-color: rgba(0, 255, 136, 0.25);
}

.showcase-badge.badge-purple {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
    border-color: rgba(168, 85, 247, 0.3);
}

.showcase-info h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
    letter-spacing: -0.3px;
}

.showcase-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.55;
    margin: 0;
}

/* Barra de diferenciais rápidos */
.quick-diff-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 35px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 14px;
    flex-wrap: wrap;
}

.quick-diff-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.quick-icon {
    font-size: 1.3rem;
}

.quick-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.quick-diff-divider {
    width: 1px;
    height: 25px;
    background: rgba(255, 255, 255, 0.1);
}

/* Seção de diferenciais expandidos */
.diff-section {
    max-width: 1100px;
    margin: 0 auto;
}

.diff-section-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    text-align: center;
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.diff-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.diff-card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    transition: all 0.35s ease;
}

.diff-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 217, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25), 0 0 15px rgba(0, 217, 255, 0.08);
}

.diff-card-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(230, 0, 18, 0.15), rgba(255, 0, 85, 0.1));
    border-radius: 12px;
    border: 1px solid rgba(230, 0, 18, 0.15);
}

.diff-card-body h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.diff-card-body p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   SLIDE 4 - INFLUENCIADORES & PARCEIROS
======================================== */

.slide-influencers {
    background: radial-gradient(circle at 60% 30%, #1a0520 0%, var(--dark) 50%, #050510 100%);
    position: relative;
    overflow: hidden;
}

.slide-influencers .cover-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(168, 85, 247, 0.03) 49%, rgba(168, 85, 247, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(230, 0, 18, 0.03) 49%, rgba(230, 0, 18, 0.03) 51%, transparent 52%);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

.slide-influencers .cover-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 25% 40%, rgba(168, 85, 247, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 75% 60%, rgba(230, 0, 18, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 217, 255, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.slide-influencers .animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Grid de Influenciadores */
.influencers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 35px auto;
}

.influencer-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 35px 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    transition: all 0.4s ease;
}

.influencer-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(168, 85, 247, 0.1);
}

.influencer-card.influencer-featured {
    border-color: rgba(168, 85, 247, 0.25);
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.06), rgba(230, 0, 18, 0.03));
}

.influencer-card.influencer-featured:hover {
    border-color: rgba(168, 85, 247, 0.5);
}

/* Avatar */
.influencer-avatar {
    position: relative;
    flex-shrink: 0;
}

.avatar-ring {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(230, 0, 18, 0.2), rgba(255, 100, 50, 0.15));
    border: 3px solid rgba(230, 0, 18, 0.4);
    box-shadow: 0 0 25px rgba(230, 0, 18, 0.15);
}

.avatar-ring-purple {
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.2), rgba(200, 100, 255, 0.15));
    border-color: rgba(168, 85, 247, 0.4);
    box-shadow: 0 0 25px rgba(168, 85, 247, 0.15);
}

.avatar-emoji {
    font-size: 2.8rem;
}

.influencer-verified {
    position: absolute;
    bottom: 0;
    right: -2px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(145deg, #00d9ff, #0090ff);
    color: white;
    font-size: 0.75rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--dark);
    box-shadow: 0 0 10px rgba(0, 217, 255, 0.4);
}

/* Info do influencer */
.influencer-info h3 {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 6px;
}

.influencer-tag {
    display: inline-block;
    padding: 3px 12px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
    background: rgba(230, 0, 18, 0.12);
    color: #ff5555;
    border: 1px solid rgba(230, 0, 18, 0.25);
}

.influencer-tag.tag-purple {
    background: rgba(168, 85, 247, 0.12);
    color: #c084fc;
    border-color: rgba(168, 85, 247, 0.25);
}

.influencer-info p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 16px;
}

.influencer-info p strong {
    color: rgba(255, 255, 255, 0.85);
}

/* Stats do influencer */
.influencer-stats {
    display: flex;
    gap: 16px;
}

.inf-stat {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.inf-stat-icon {
    font-size: 0.95rem;
}

/* Highlights de influência */
.influence-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

/* Card largo (ZazaCosplay) */
.influencer-wide {
    grid-column: 1 / -1;
}

/* Avatar ring gold */
.avatar-ring-gold {
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.25), rgba(255, 180, 0, 0.15));
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 0 25px rgba(255, 215, 0, 0.15);
}

/* Tag gold */
.influencer-tag.tag-gold {
    background: rgba(255, 215, 0, 0.12);
    color: #ffd700;
    border-color: rgba(255, 215, 0, 0.25);
}

/* Zarte Studio label */
.zarte-label {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 8px;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.2), rgba(255, 180, 0, 0.1));
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
    vertical-align: middle;
    margin-left: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* Banner YouTube */
.youtube-banner {
    display: flex;
    align-items: center;
    gap: 22px;
    max-width: 1100px;
    margin: 0 auto 28px auto;
    padding: 22px 30px;
    background: linear-gradient(145deg, rgba(255, 0, 0, 0.1), rgba(200, 0, 0, 0.05));
    border: 1px solid rgba(255, 0, 0, 0.2);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.youtube-banner:hover {
    background: linear-gradient(145deg, rgba(255, 0, 0, 0.15), rgba(200, 0, 0, 0.08));
    border-color: rgba(255, 0, 0, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.1);
}

.yt-icon {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ff0000, #cc0000);
    border-radius: 14px;
    font-size: 1.6rem;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 0, 0, 0.3);
}

.yt-info h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.yt-info h4 strong {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #ff4444, #ff0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.yt-info p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

.yt-info p strong {
    color: rgba(255, 255, 255, 0.8);
}

.influence-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.influence-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-3px);
}

.influence-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(168, 85, 247, 0.15), rgba(200, 100, 255, 0.08));
    border-radius: 12px;
    border: 1px solid rgba(168, 85, 247, 0.15);
}

.influence-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.influence-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   SLIDE 5 - PATROCÍNIOS & MARCAS
======================================== */

.slide-sponsors {
    background: radial-gradient(circle at 40% 40%, #0a1628 0%, var(--dark) 50%, #050510 100%);
    position: relative;
    overflow: hidden;
}

.slide-sponsors .cover-background {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(255, 215, 0, 0.03) 49%, rgba(255, 215, 0, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(0, 217, 255, 0.03) 49%, rgba(0, 217, 255, 0.03) 51%, transparent 52%);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

.slide-sponsors .cover-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(circle at 30% 35%, rgba(0, 150, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 65%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(230, 0, 18, 0.08) 0%, transparent 50%);
    z-index: 0;
}

.slide-sponsors .animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Grid de patrocinadores */
.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto 35px auto;
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.4s ease;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(255, 215, 0, 0.08);
}

/* Logo do patrocinador */
.sponsor-logo-wrap {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(240, 240, 240, 0.9));
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 30px;
    border-radius: 22px 22px 0 0;
}

.sponsor-logo {
    max-width: 250px;
    max-height: 120px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
    transition: transform 0.4s ease;
}

.sponsor-card:hover .sponsor-logo {
    transform: scale(1.08);
}

/* Info do patrocinador */
.sponsor-info {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sponsor-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.sponsor-header h3 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--white);
}

.sponsor-badge {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: rgba(255, 215, 0, 0.12);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.25);
}

.sponsor-badge-blue {
    background: rgba(0, 217, 255, 0.12);
    color: #00d9ff;
    border-color: rgba(0, 217, 255, 0.25);
}

.sponsor-info p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 16px;
}

.sponsor-info p strong {
    color: rgba(255, 255, 255, 0.85);
}

/* Tags do patrocinador */
.sponsor-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sp-tag {
    padding: 5px 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* Benefícios dos patrocínios */
.sponsor-benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    max-width: 1100px;
    margin: 0 auto;
}

.sponsor-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.sponsor-benefit-item:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 215, 0, 0.3);
    transform: translateY(-3px);
}

.sb-icon {
    font-size: 1.6rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(255, 215, 0, 0.15), rgba(255, 180, 0, 0.08));
    border-radius: 12px;
    border: 1px solid rgba(255, 215, 0, 0.15);
}

.sponsor-benefit-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}

.sponsor-benefit-item p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
    margin: 0;
}

/* ========================================
   SLIDE 6 - FALE CONOSCO
======================================== */

.slide-contact {
    background: radial-gradient(circle at 20% 50%, #1a0a2e 0%, var(--dark) 50%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.slide-contact .cover-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    background: 
        linear-gradient(45deg, transparent 48%, rgba(0, 217, 255, 0.03) 49%, rgba(0, 217, 255, 0.03) 51%, transparent 52%),
        linear-gradient(-45deg, transparent 48%, rgba(255, 0, 85, 0.03) 49%, rgba(255, 0, 85, 0.03) 51%, transparent 52%);
    background-size: 30px 30px;
    animation: gridMove 20s linear infinite;
    z-index: 0;
}

.slide-contact .cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 70% 30%, rgba(230, 0, 18, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 30% 70%, rgba(0, 217, 255, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    z-index: 0;
}

.slide-contact .animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Layout de contato */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

/* Blocos de informação */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-block {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.contact-block:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(0, 217, 255, 0.2);
    transform: translateX(5px);
}

.contact-block-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 0, 18, 0.15);
    border-radius: 12px;
}

.contact-block-content h3 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
}

.contact-block-content p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.contact-detail {
    font-size: 0.88rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin-top: 2px;
}

/* Canais de contato */
.contact-channels-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.channels-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.channel-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 22px;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
}

.channel-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.channel-whatsapp:hover {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.4);
}

.channel-instagram:hover {
    background: rgba(225, 48, 108, 0.15);
    border-color: rgba(225, 48, 108, 0.4);
}

.channel-site:hover {
    background: rgba(0, 217, 255, 0.15);
    border-color: rgba(0, 217, 255, 0.4);
}

.channel-shopee:hover {
    background: rgba(238, 77, 45, 0.15);
    border-color: rgba(238, 77, 45, 0.4);
}

.channel-icon-box {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    flex-shrink: 0;
}

.channel-whatsapp .channel-icon-box {
    background: rgba(37, 211, 102, 0.2);
    color: #25d366;
}

.channel-instagram .channel-icon-box {
    background: rgba(225, 48, 108, 0.2);
    color: #e1306c;
}

.channel-site .channel-icon-box {
    background: rgba(0, 217, 255, 0.2);
    color: #00d9ff;
}

.channel-shopee .channel-icon-box {
    background: rgba(238, 77, 45, 0.2);
    color: #ee4d2d;
}

.channel-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.channel-text strong {
    font-size: 1.05rem;
    color: var(--white);
}

.channel-text span {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.channel-arrow {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.channel-card:hover .channel-arrow {
    color: var(--white);
    transform: translateX(5px);
}

/* ========================================
   NAVEGAÇÃO MODERNA
======================================== */

.navigation-modern {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
    z-index: 1000;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.navigation-modern.nav-hidden {
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(30px);
}

.slide-counter {
    display: none;
}

.nav-btn-modern {
    width: 45px;
    height: 45px;
    background: rgba(10, 10, 10, 0.6);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.nav-btn-modern::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.5), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s;
}

.nav-btn-modern:hover::before {
    width: 100px;
    height: 100px;
}

.nav-btn-modern:hover {
    background: linear-gradient(145deg, var(--neon-red), var(--neon-pink));
    border-color: var(--neon-blue);
    transform: scale(1.15) rotate(5deg);
    box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.6),
        0 0 50px rgba(230, 0, 18, 0.4),
        0 8px 25px rgba(0, 0, 0, 0.3);
}

.slide-indicators-modern {
    display: flex;
    gap: 10px;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(10px);
    padding: 10px 18px;
    border-radius: 30px;
    border: 1px solid rgba(0, 217, 255, 0.2);
}

.indicator {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(0, 217, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.indicator.active {
    background: linear-gradient(145deg, var(--primary-red), var(--neon-red));
    width: 40px;
    border-radius: 6px;
    border-color: var(--neon-blue);
    box-shadow: 0 0 15px rgba(230, 0, 18, 0.6);
}

.current-slide {
    color: var(--primary-red);
    font-size: 1.5rem;
}

.divider {
    color: var(--gray);
    margin: 0 10px;
}

.total-slides {
    color: var(--gray);
}

/* ========================================
   SLIDE 7 - PROJETO DA LOJA
======================================== */

.slide-store-project .cover-overlay {
    background:
        radial-gradient(circle at 40% 60%, rgba(255, 215, 0, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 60% 40%, rgba(0, 217, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(230, 0, 18, 0.1) 0%, transparent 50%);
}

.project-gallery {
    position: relative;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 30px auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(0, 217, 255, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.08);
}

.project-gallery-container {
    position: relative;
    width: 100%;
}

.project-slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.8s ease-in-out;
}

.project-slide.active {
    display: block;
}

.project-slide img {
    width: 100%;
    height: auto;
    max-height: 65vh;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.3);
    display: block;
}

/* Caption / Legenda */
.project-caption {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.caption-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 30px;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold);
    border: 1px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 10px;
}

.project-caption p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-style: italic;
}

/* ========================================
   SLIDE 6 - SOLUÇÕES DIGITAIS
======================================== */

.slide-digital .cover-overlay {
    background:
        radial-gradient(circle at 30% 70%, rgba(0, 217, 255, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(138, 43, 226, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(0, 255, 136, 0.1) 0%, transparent 60%);
}

.digital-services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto 40px auto;
}

.digital-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 35px 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.digital-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.digital-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.15);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

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

/* Cores específicas por card */
.digital-card-dev::before {
    background: linear-gradient(90deg, #00d9ff, #0088ff);
}
.digital-card-dev:hover {
    border-color: rgba(0, 217, 255, 0.3);
    box-shadow: 0 15px 40px rgba(0, 217, 255, 0.15);
}

.digital-card-video::before {
    background: linear-gradient(90deg, #ff3366, #ff6b35);
}
.digital-card-video:hover {
    border-color: rgba(255, 51, 102, 0.3);
    box-shadow: 0 15px 40px rgba(255, 51, 102, 0.15);
}

.digital-card-mkt::before {
    background: linear-gradient(90deg, #8b5cf6, #d946ef);
}
.digital-card-mkt:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.digital-card-traffic::before {
    background: linear-gradient(90deg, #10b981, #06d6a0);
}
.digital-card-traffic:hover {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.15);
}

/* Ícone do card digital */
.digital-card-icon {
    position: relative;
    flex-shrink: 0;
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.digital-icon-emoji {
    font-size: 2rem;
    position: relative;
    z-index: 1;
}

.digital-icon-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    filter: blur(15px);
    opacity: 0.4;
}

.digital-card-dev .digital-icon-glow {
    background: #00d9ff;
}
.digital-card-video .digital-icon-glow {
    background: #ff3366;
}
.digital-card-mkt .digital-icon-glow {
    background: #8b5cf6;
}
.digital-card-traffic .digital-icon-glow {
    background: #10b981;
}

/* Conteúdo do card digital */
.digital-card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 5px;
}

.digital-card-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 20px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.digital-card-dev .digital-card-tag {
    color: #00d9ff;
    border-color: rgba(0, 217, 255, 0.3);
    background: rgba(0, 217, 255, 0.08);
}
.digital-card-video .digital-card-tag {
    color: #ff6b6b;
    border-color: rgba(255, 51, 102, 0.3);
    background: rgba(255, 51, 102, 0.08);
}
.digital-card-mkt .digital-card-tag {
    color: #c084fc;
    border-color: rgba(139, 92, 246, 0.3);
    background: rgba(139, 92, 246, 0.08);
}
.digital-card-traffic .digital-card-tag {
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.3);
    background: rgba(16, 185, 129, 0.08);
}

.digital-card-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.digital-card-content p strong {
    color: var(--white);
    font-weight: 600;
}

/* Tech badges */
.digital-techs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-badge {
    font-size: 0.7rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.digital-card:hover .tech-badge {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
}

/* Barra de destaques do slide digital */
.digital-highlight-bar {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 25px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.digital-highlight-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.dh-icon {
    font-size: 1.8rem;
}

.digital-highlight-item div {
    display: flex;
    flex-direction: column;
}

.digital-highlight-item strong {
    font-size: 0.95rem;
    color: var(--white);
    font-weight: 700;
}

.digital-highlight-item span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   RESPONSIVIDADE
======================================== */

@media (max-width: 1024px) {
    .cover-title {
        font-size: 3rem;
    }
    
    .section-title-modern {
        font-size: 2.5rem;
    }
    
    .stats-hero-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stat-card-modern {
        min-height: 260px;
    }
    
    .stat-number-large {
        font-size: 3.5rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .showcase-card {
        flex-direction: row;
    }

    .showcase-img {
        width: 180px;
    }
    
    .quick-diff-bar {
        gap: 18px;
        padding: 18px 22px;
    }

    .diff-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .influencers-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .sponsors-grid {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .sponsor-benefits {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .digital-services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .digital-highlight-bar {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .youtube-banner {
        flex-direction: row;
        gap: 18px;
        padding: 18px 22px;
    }

    .influence-highlights {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .split-container {
        grid-template-columns: 1fr;
    }
    
    .market-visual-section {
        grid-template-columns: 1fr;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    .project-gallery {
        border-radius: 16px;
    }

    .project-slide img {
        max-height: 55vh;
    }
    
    .container-full {
        padding: 40px 25px;
    }
}

@media (max-width: 768px) {
    .cover-title {
        font-size: 2rem;
    }
    
    .highlight-red {
        font-size: inherit;
    }
    
    .section-title-modern {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.2rem;
    }
    
    .stats-hero-grid,
    .metrics-row {
        grid-template-columns: 1fr;
    }

    .diff-cards-grid {
        grid-template-columns: 1fr;
    }

    .influencer-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }

    .influencer-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .influence-highlights {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .product-card {
        flex-direction: row;
        text-align: left;
        gap: 16px;
    }

    .product-icon-wrap {
        width: 60px;
        height: 60px;
        min-width: 60px;
        margin-bottom: 0;
    }

    .product-icon-img {
        width: 40px;
        height: 40px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .showcase-card {
        flex-direction: column;
    }

    .showcase-img {
        width: 100%;
        min-height: 130px;
        max-height: 160px;
    }

    .showcase-info {
        padding: 18px;
    }

    .showcase-info h3 {
        font-size: 1.05rem;
    }

    .showcase-info p {
        font-size: 0.8rem;
    }

    .quick-diff-bar {
        flex-direction: column;
        gap: 12px;
        padding: 18px;
    }

    .quick-diff-divider {
        width: 60px;
        height: 1px;
    }
    
    .stat-number-large {
        font-size: 3rem;
    }
    
    .stat-icon-box {
        font-size: 2.5rem;
    }
    
    .business-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .container-full {
        padding: 30px 20px;
    }
    
    .slide-header-center {
        margin-bottom: 30px;
    }

    .digital-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 25px 20px;
    }

    .digital-card-icon {
        width: 55px;
        height: 55px;
    }

    .digital-techs {
        justify-content: center;
    }

    .digital-highlight-bar {
        padding: 20px;
        gap: 15px;
    }

    .digital-highlight-item {
        gap: 10px;
    }

    .project-gallery {
        border-radius: 12px;
    }

    .project-slide img {
        max-height: 45vh;
    }

    .gallery-control {
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }
    
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .highlight-item {
        padding: 15px;
    }
}

/* ========================================
   PLACEHOLDER BOXES (substituem imagens externas)
======================================== */

.placeholder-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 150px;
    border-radius: 12px;
    gap: 10px;
}

.placeholder-icon {
    font-size: 3rem;
}

.placeholder-text {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.placeholder-dark {
    background: linear-gradient(145deg, #333333, #1a1a1a);
}

.placeholder-red {
    background: linear-gradient(145deg, #e60012, #cc0010);
}

.placeholder-gold {
    background: linear-gradient(145deg, #ffd700, #d4a800);
    color: #333;
}

.placeholder-gold .placeholder-text {
    color: #333;
}

.placeholder-pink {
    background: linear-gradient(145deg, #ff4757, #cc3945);
}

.showcase-main .placeholder-box {
    min-height: 400px;
}

.showcase-small .placeholder-box {
    min-height: 200px;
}

/* ========================================
   ÚLTIMO SLIDE - AVISO E BOTÃO VOLTAR
======================================== */

.last-slide-footer {
    text-align: center;
    padding: 30px 20px;
    margin-top: 30px;
}

.last-slide-message {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.btn-back-to-start {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(145deg, var(--primary-red), var(--neon-red));
    color: var(--white);
    border: 2px solid rgba(0, 217, 255, 0.3);
    padding: 14px 35px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 
        0 5px 20px rgba(230, 0, 18, 0.4),
        0 0 15px rgba(230, 0, 18, 0.2);
    font-family: 'Poppins', sans-serif;
}

.btn-back-to-start:hover {
    transform: translateY(-3px) scale(1.05);
    border-color: var(--neon-blue);
    box-shadow: 
        0 0 30px rgba(0, 217, 255, 0.5),
        0 0 50px rgba(230, 0, 18, 0.3),
        0 10px 30px rgba(0, 0, 0, 0.3);
}

.btn-back-to-start:active {
    transform: translateY(0) scale(0.98);
}
