/* V2 - Versão otimizada para máxima fluidez e performance */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores principais - Tema Roxo Futurista */
    --primary: #8B5CF6;
    --primary-dark: #6D28D9;
    --primary-light: #A78BFA;
    --secondary: #3B82F6;
    --accent: #EC4899;
    --neon-purple: #A855F7;
    --neon-blue: #06B6D4;
    --neon-pink: #F472B6;
    
    /* Backgrounds */
    --bg-dark: #0A0118;
    --bg-darker: #050012;
    --bg-card: rgba(139, 92, 246, 0.05);
    
    /* Textos */
    --text-primary: #FFFFFF;
    --text-secondary: #C4B5FD;
    --text-muted: #9CA3AF;
    
    /* Glass effect */
    --glass-bg: rgba(139, 92, 246, 0.08);
    --glass-border: rgba(167, 139, 250, 0.2);
    
    /* Fontes */
    --font-display: 'Orbitron', sans-serif;
    --font-body: 'Rajdhani', sans-serif;
    
    /* Cores de destaque verde */
    --green-accent: #10B981;
    --green-light: #34D399;
    --green-neon: #6EE7B7;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Importar fontes mais arredondadas e legíveis */
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Sobrescrever fontes para mais arredondadas */
body, .hero-subtitle, .section-subtitle, p, li, .stat-label, .device-brands, .feature-badge {
    font-family: 'Poppins', sans-serif !important;
}

h1, h2, h3, h4, h5, h6, .hero-title, .section-title, .plan-name, .stat-number {
    font-family: 'Quicksand', sans-serif !important;
    font-weight: 700;
}

/* V2 - Partículas flutuantes leves no background */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    pointer-events: none;
    overflow: hidden;
}

/* V2 - Animação de partículas otimizada */
.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: rgba(139, 92, 246, 0.4);
    border-radius: 50%;
    /* V2 - GPU acceleration para performance */
    transform: translate3d(0, 0, 0);
    will-change: transform, opacity;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translate3d(0, -100vh, 0);
        opacity: 0;
    }
}

/* V2 - Scan line sutil no hero */
.scan-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(139, 92, 246, 0.5) 50%, 
        transparent 100%
    );
    /* V2 - Animação otimizada com transform */
    transform: translate3d(0, 0, 0);
    will-change: transform;
    animation: scanLine 3s ease-in-out infinite;
    opacity: 0.3;
}

@keyframes scanLine {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, calc(100vh - 400px), 0);
    }
}

/* V2 - Background Animado otimizado */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, 
        var(--bg-darker) 0%, 
        var(--bg-dark) 25%,
        #1a0b2e 50%,
        var(--bg-dark) 75%,
        var(--bg-darker) 100%
    );
    background-size: 400% 400%;
    /* V2 - Animação mais suave e lenta para fluidez */
    animation: gradientShift 20s ease infinite;
    /* V2 - GPU acceleration otimizado */
    transform: translate3d(0, 0, 0);
    will-change: auto;
}

.background-animation::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(59, 130, 246, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    /* V2 - Animação mais suave para leveza */
    animation: floatBackground 25s ease-in-out infinite;
    will-change: transform;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

@keyframes floatBackground {
    0%, 100% { 
        transform: translate3d(0, 0, 0) scale(1); 
    }
    50% { 
        transform: translate3d(0, -15px, 0) scale(1.03); 
    }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* V2 - Animações Globais otimizadas */
@keyframes fadeIn {
    from {
        opacity: 0;
        /* V2 - Usar transform3d para GPU */
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes floating {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        /* V2 - Movimento mais sutil */
        transform: translate3d(0, -10px, 0);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* V2 - Shimmer otimizado */
@keyframes shimmer {
    0% {
        transform: translate3d(-100%, 0, 0);
    }
    100% {
        transform: translate3d(100%, 0, 0);
    }
}

@keyframes badgeShimmer {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out;
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

/* Hero Section */
.hero {
    min-height: auto;
    max-height: fit-content;
    height: auto;
    display: block;
    padding: 15px 0 0 0;
    position: relative;
    margin: 0;
    overflow: visible;
}

.hero .container {
    display: block;
    padding: 0 20px;
    margin: 0 auto;
}

.hero-content {
    z-index: 1;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 0 20px 0;
    margin-bottom: -170px;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(135deg, var(--neon-purple), var(--neon-blue), var(--neon-pink));
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 8s ease infinite;
}

.hero-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    color: var(--text-secondary);
    margin: 0;
    padding: 0;
    font-weight: 400;
    line-height: 1.3;
}

/* V2 - Esteira de Filmes super otimizada */
.movie-carousel {
    padding: 30px 0 60px;
    margin-top: -200px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(180deg, transparent 0%, transparent 15%, rgba(139, 92, 246, 0.03) 30%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    margin-bottom: 30px;
    /* V2 - GPU acceleration otimizada */
    backface-visibility: hidden;
    perspective: 1000px;
    transform: translate3d(0, 0, 0);
}

.carousel-track:last-child {
    margin-bottom: 0;
}

/* V2 - Transições mais suaves com GPU */
.carousel-left {
    animation: scrollLeft 60s linear infinite;
}

.carousel-right {
    animation: scrollRight 60s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

@keyframes scrollRight {
    0% {
        transform: translate3d(-50%, 0, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

.carousel-item {
    flex-shrink: 0;
    width: 200px;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    /* V2 - Transição mais rápida para fluidez (0.3s) */
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), 
                box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    /* V2 - GPU acceleration */
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* V2 - GPU acceleration */
    transform: translate3d(0, 0, 0);
}

.carousel-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, transparent 100%);
    padding: 20px 12px 12px;
    opacity: 0;
    /* V2 - Transição mais rápida (0.3s) */
    transition: opacity 0.3s ease;
}

.carousel-title {
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
    line-height: 1.3;
}

.carousel-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
}

.carousel-item:hover .carousel-overlay {
    opacity: 1;
}

/* V2 - Hover mais suave e leve */
.carousel-item:hover {
    transform: translate3d(0, -8px, 0) scale(1.03);
    box-shadow: 
        0 15px 40px rgba(139, 92, 246, 0.35),
        0 0 20px rgba(139, 92, 246, 0.25);
    z-index: 10;
}

.movie-carousel::before,
.movie-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.movie-carousel::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 100%);
}

.movie-carousel::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg-dark) 0%, transparent 100%);
}

@media (max-width: 768px) {
    .carousel-item {
        width: 150px;
        height: 225px;
    }
}

/* Destaques em verde */
.highlight-green {
    color: var(--green-accent) !important;
    font-weight: 600;
}

.green-glow {
    color: var(--green-accent) !important;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

.green-icon svg {
    stroke: var(--neon-purple) !important;
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5)) !important;
}

/* V2 - CTA Button super otimizado */
.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 19px 68px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.7), rgba(124, 58, 237, 0.7)) !important;
    /* V2 - Backdrop-filter reduzido para performance */
    backdrop-filter: blur(20px) saturate(150%) !important;
    -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
    color: white;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: var(--font-body);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    position: relative;
    overflow: hidden !important;
    z-index: 10;
    /* V2 - Transição mais rápida (0.3s padrão) */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.37),
        0 5px 15px rgba(139, 92, 246, 0.2) !important;
    /* V2 - GPU acceleration */
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
}

.cta-button::before {
    display: none !important;
}

/* V2 - Hover mais suave */
.cta-button:hover {
    transform: translate3d(0, -2px, 0) !important;
    border-color: rgba(255, 255, 255, 0.25) !important;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.85), rgba(124, 58, 237, 0.85)) !important;
    box-shadow: 
        0 10px 35px 0 rgba(31, 38, 135, 0.45),
        0 8px 20px rgba(139, 92, 246, 0.3) !important;
}

.cta-button svg {
    /* V2 - Transição mais rápida */
    transition: transform 0.3s ease;
    transform: translate3d(0, 0, 0);
    width: 28px;
    height: 28px;
}

.cta-button:hover svg {
    transform: translate3d(5px, 0, 0);
}

/* Sections */
section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-family: 'Quicksand', sans-serif !important;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 60px;
    font-weight: 400;
}

/* Seção de Vídeo Player */
.video-section {
    padding: 0 0 40px;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.05), transparent);
    margin-top: -80px;
}

.video-title {
    color: white;
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.video-player-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(139, 92, 246, 0.3),
        0 10px 40px rgba(0, 0, 0, 0.3);
}

.video-player {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
    border-radius: 20px;
    object-fit: cover;
}

.video-player::-webkit-media-controls {
    display: none;
}

/* V2 - Overlays com transições otimizadas */
.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
    /* V2 - Transição mais rápida (0.3s) */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    pointer-events: all;
    display: flex;
    backdrop-filter: blur(10px);
    border-radius: 50%;
}

.play-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
}

.pause-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 2;
    /* V2 - Transição mais rápida (0.3s) */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.9;
    pointer-events: none;
    display: flex;
    backdrop-filter: blur(10px);
    border-radius: 50%;
}

.pause-overlay:hover {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(139, 92, 246, 0.2);
    border-top-color: #8B5CF6;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.play-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.video-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    z-index: 10;
    pointer-events: all;
    user-select: none;
    -webkit-user-select: none;
}

.video-progress-filled {
    height: 100%;
    background: linear-gradient(90deg, #8B5CF6, #A78BFA);
    width: 0%;
    /* V2 - Transição suave */
    transition: width 0.1s linear;
    position: relative;
}

.progress-thumb {
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: #8B5CF6;
    border-radius: 50%;
    cursor: grab;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    /* V2 - Transição rápida */
    transition: transform 0.2s ease;
}

.progress-thumb:hover {
    transform: translateY(-50%) scale(1.2);
}

.progress-thumb:active {
    cursor: grabbing;
    transform: translateY(-50%) scale(1.3);
}

/* V2 - Feature tags com micro-animações */
.video-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-primary);
    flex: 1;
    min-width: 240px;
    /* V2 - Remover animações de clique/hover */
    pointer-events: none;
}

.feature-tag svg {
    color: var(--primary);
}

/* Seção WhatsApp CTA - Otimizada */
.whatsapp-cta {
    padding: 60px 0;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.05), transparent);
}

.whatsapp-content {
    text-align: center;
    padding: 60px 40px;
    max-width: 800px;
    margin: 0 auto;
}

.whatsapp-content h3 {
    font-family: 'Quicksand', sans-serif !important;
    font-size: clamp(2rem, 5vw, 3rem);
    margin-bottom: 16px;
}

.whatsapp-content p {
    font-size: clamp(1rem, 2vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* V2 - Glass Card com efeito otimizado */
.glass-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 20px;
    padding: 30px;
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37) !important;
}

.glass-card * {
    pointer-events: auto;
    position: relative;
    z-index: 2;
}

/* Seção de Compatibilidade */
.compatibility {
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.03), transparent);
    padding: 50px 0 60px;
    margin-top: -20px;
}

/* V2 - Grid Leve 2x2 de Dispositivos */
.devices-grid-light {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin: 40px auto 0;
}

.device-box {
    text-align: center;
    padding: 32px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    /* V2 - Sem animações, backdrop-filter ou shadows pesados */
}

.device-emoji {
    font-size: 3rem;
    margin-bottom: 12px;
    line-height: 1;
}

.device-box h4 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0 0 8px 0;
}

.device-box span {
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: block;
}

@media (max-width: 768px) {
    .devices-grid-light {
        gap: 16px;
    }
    
    .device-box {
        padding: 28px 16px;
    }
    
    .device-emoji {
        font-size: 2.5rem;
    }
    
    .device-box h4 {
        font-size: 1.1rem;
    }
    
    .device-box span {
        font-size: 0.85rem;
    }
}

/* V2 - Stats Grid otimizada */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    padding: 36px 24px;
    position: relative;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    z-index: 1;
    overflow: hidden;
    /* V2 - Remover animações de clique */
    pointer-events: none;
}

/* V2 - Efeito de reflexo mais sutil e otimizado */
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(255, 255, 255, 0.25) 55%,
        rgba(255, 255, 255, 0.15) 60%,
        transparent 70%,
        transparent 100%
    );
    background-size: 600% 100%;
    background-position: 150% 0;
    background-repeat: no-repeat;
    animation: none;
    pointer-events: none;
}

/* V2 - Animação suave quando visível */
.stat-card.in-view::before {
    animation: glassShine 10s ease-in-out infinite !important;
}

@keyframes glassShine {
    0% {
        background-position: 150% 0;
    }
    50% {
        background-position: -50% 0;
    }
    100% {
        background-position: 150% 0;
    }
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    margin-bottom: 12px;
    line-height: 1;
}

.glow-text {
    color: var(--neon-purple);
    text-shadow: 0 0 20px rgba(139, 92, 246, 0.6);
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

/* V2 - Seção de Benefícios super otimizada */
#benefits {
    content-visibility: auto;
    contain-intrinsic-size: auto 800px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.benefit-card {
    text-align: left;
    padding: 48px 36px;
    pointer-events: none;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    /* V2 - Sem transition inicial para performance */
    transition: none;
}

/* Layout Bento Grid - Tamanhos Dinâmicos */
.benefit-card[data-benefit="1"] {
    grid-column: span 2;
    grid-row: span 1;
}

.benefit-card[data-benefit="2"] {
    grid-column: span 2;
    grid-row: span 1;
}

.benefit-card[data-benefit="3"] {
    grid-column: span 2;
    grid-row: span 2;
}

.benefit-card[data-benefit="4"] {
    grid-column: span 3;
    grid-row: span 1;
}

.benefit-card[data-benefit="5"] {
    grid-column: span 3;
    grid-row: span 1;
}

/* V2 - Animação de entrada mais suave */
.benefit-card.benefit-visible {
    animation: benefitReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes benefitReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* V2 - Delays sutis para cascata */
.benefit-card[data-benefit="1"].benefit-visible { animation-delay: 0s; }
.benefit-card[data-benefit="2"].benefit-visible { animation-delay: 0.1s; }
.benefit-card[data-benefit="3"].benefit-visible { animation-delay: 0.15s; }
.benefit-card[data-benefit="4"].benefit-visible { animation-delay: 0.2s; }
.benefit-card[data-benefit="5"].benefit-visible { animation-delay: 0.25s; }

.benefit-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(59, 130, 246, 0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    line-height: 1;
}

/* V2 - Ícones com animação sutil */
.benefit-icon {
    width: 80px;
    height: 80px;
    margin: 0 0 24px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(59, 130, 246, 0.12));
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.benefit-icon::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(59, 130, 246, 0.2));
    opacity: 0;
    /* V2 - Transição mais rápida */
    transition: opacity 0.5s ease;
}

/* V2 - Pulse suave nos ícones */
.benefit-card.benefit-visible .benefit-icon::after {
    animation: iconPulse 3s ease-in-out infinite;
}

.benefit-highlight.benefit-visible .benefit-icon::after {
    animation: none;
}

@keyframes iconPulse {
    0%, 100% { opacity: 0; }
    50% { opacity: 0.8; }
}

.benefit-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--neon-purple);
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
    position: relative;
    z-index: 1;
    /* V2 - Transição mais rápida */
    transition: filter 0.3s ease;
}

/* V2 - Cores gradientes tecnológicas por card */
.benefit-card[data-benefit="1"] .benefit-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.12), rgba(6, 182, 212, 0.12));
    border-color: rgba(59, 130, 246, 0.25);
}

.benefit-card[data-benefit="1"] .benefit-icon::after {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.25), rgba(6, 182, 212, 0.25));
}

.benefit-card[data-benefit="1"] .benefit-icon svg {
    stroke: #3B82F6;
    filter: drop-shadow(0 0 12px rgba(59, 130, 246, 0.6));
}

.benefit-card[data-benefit="2"] .benefit-icon {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(217, 70, 239, 0.12));
    border-color: rgba(168, 85, 247, 0.25);
}

.benefit-card[data-benefit="2"] .benefit-icon::after {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.25), rgba(217, 70, 239, 0.25));
}

.benefit-card[data-benefit="2"] .benefit-icon svg {
    stroke: #A855F7;
    filter: drop-shadow(0 0 12px rgba(168, 85, 247, 0.6));
}

.benefit-card[data-benefit="3"] .benefit-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(245, 158, 11, 0.12));
    border-color: rgba(251, 191, 36, 0.25);
}

.benefit-card[data-benefit="3"] .benefit-icon::after {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.25), rgba(245, 158, 11, 0.25));
}

.benefit-card[data-benefit="3"] .benefit-icon svg {
    stroke: #FBBF24;
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.6));
}

.benefit-card[data-benefit="4"] .benefit-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(5, 150, 105, 0.12));
    border-color: rgba(16, 185, 129, 0.25);
}

.benefit-card[data-benefit="4"] .benefit-icon::after {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.25), rgba(5, 150, 105, 0.25));
}

.benefit-card[data-benefit="4"] .benefit-icon svg {
    stroke: #10B981;
    filter: drop-shadow(0 0 12px rgba(16, 185, 129, 0.6));
}

.benefit-card[data-benefit="5"] .benefit-icon {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.12), rgba(244, 63, 94, 0.12));
    border-color: rgba(239, 68, 68, 0.25);
}

.benefit-card[data-benefit="5"] .benefit-icon::after {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.25), rgba(244, 63, 94, 0.25));
}

.benefit-card[data-benefit="5"] .benefit-icon svg {
    stroke: #EF4444;
    filter: drop-shadow(0 0 12px rgba(239, 68, 68, 0.6));
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 700;
    position: relative;
    z-index: 1;
    line-height: 1.3;
}

.benefit-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

.benefit-highlight {
    border: 2px solid rgba(139, 92, 246, 0.3);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(59, 130, 246, 0.08));
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.benefit-highlight .benefit-number {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 6rem;
}

.benefit-highlight .benefit-icon {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(124, 58, 237, 0.15));
    border-color: rgba(139, 92, 246, 0.3);
    width: 90px;
    height: 90px;
}

.benefit-highlight h3 {
    font-size: 1.8rem;
}

.green-icon svg {
    stroke: var(--neon-purple);
    filter: drop-shadow(0 0 12px rgba(139, 92, 246, 0.6));
    width: 44px;
    height: 44px;
}

.benefit-highlight::before {
    content: '';
    position: absolute;
    left: 36px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    border-radius: 2px;
    opacity: 0.3;
}

.benefit-glow {
    display: none;
}

/* Responsivo - Benefits Grid */
@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .benefit-card[data-benefit="1"],
    .benefit-card[data-benefit="2"] {
        grid-column: span 2;
    }
    
    .benefit-card[data-benefit="3"] {
        grid-column: span 4;
        grid-row: span 1;
    }
    
    .benefit-card[data-benefit="4"],
    .benefit-card[data-benefit="5"] {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .benefit-card[data-benefit="1"],
    .benefit-card[data-benefit="2"],
    .benefit-card[data-benefit="3"],
    .benefit-card[data-benefit="4"],
    .benefit-card[data-benefit="5"] {
        grid-column: span 1;
        grid-row: span 1;
    }
    
    .benefit-number {
        font-size: 3.5rem;
        top: 20px;
        right: 20px;
    }
    
    .benefit-highlight .benefit-number {
        font-size: 4rem;
    }
    
    .benefit-card {
        padding: 36px 28px;
        text-align: center;
    }
    
    .benefit-icon {
        margin: 0 auto 24px;
    }
    
    .benefit-highlight::before {
        display: none;
    }
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(167, 139, 250, 0.1);
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.05));
}

.footer-bottom {
    padding-top: 0;
    border-top: none;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* V2 - Glow on Hover otimizado */
.glow-on-hover {
    position: relative;
}

.glow-on-hover::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.4), transparent 70%);
    /* V2 - Transição mais rápida */
    transition: width 0.4s ease, height 0.4s ease;
    z-index: -1;
    pointer-events: none;
}

.glow-on-hover:hover::after {
    width: 300px;
    height: 300px;
}

/* Responsividade */
@media (max-width: 1024px) {
    .hero .container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    section {
        padding: 50px 0;
    }
    
    .hero {
        padding: 40px 0 30px;
        min-height: 40vh;
    }
    
    .movie-carousel {
        padding: 40px 0;
    }
    
    .whatsapp-cta {
        padding: 40px 0;
    }
    
    .whatsapp-content {
        padding: 40px 24px;
    }
    
    .stats-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-button {
        padding: 19px 60px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* V2 - Will-change controlado dinamicamente apenas para carousel */
.carousel-item:hover {
    will-change: transform;
}

/* V2 - Acessibilidade */
:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 4px;
}

a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-light);
    outline-offset: 4px;
}

/* V2 - Scroll suave */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* V2 - Respeitar preferência de reduced motion */
@media (prefers-reduced-motion: reduce) {
    *:not(.carousel-track):not(.carousel-left):not(.carousel-right),
    *::before,
    *::after {
        animation-duration: 0.01s !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01s !important;
    }
    
    .background-animation,
    .floating,
    .particle,
    .scan-line {
        animation: none !important;
    }
}
