/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    overflow-x: hidden;
    cursor: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* SVG Icons Styles */
.icon-fire,
.icon-rocket,
.icon-check,
.icon-lightbulb,
.icon-shocked {
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    color: #00ff41;
    filter: drop-shadow(0 0 5px rgba(0, 255, 65, 0.5));
    transition: all 0.3s ease;
}

.icon-fire:hover,
.icon-rocket:hover,
.icon-check:hover,
.icon-lightbulb:hover,
.icon-shocked:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 10px rgba(0, 255, 65, 0.8));
}

.eye-iris svg {
    color: #00ff41;
    animation: pulse 2s infinite;
}

.subtitle .icon-fire {
    margin-right: 12px;
    animation: flicker 2s infinite alternate;
}

.video-overlay .icon-fire {
    margin-right: 10px;
}

.btn-whatsapp .icon-fire {
    margin-right: 8px;
    animation: bounce 1s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-3px); }
    60% { transform: translateY(-2px); }
}

/* Custom Cursor - Dollar Sign Icon */
.cursor {
    width: 24px;
    height: 24px;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    background: #00ff41;
    mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="currentColor"><path d="M11 2h2v2h3c1.1 0 2 .9 2 2v2h-2V6h-3v4h3c1.1 0 2 .9 2 2v4c0 1.1-.9 2-2 2h-3v2h-2v-2H8c-1.1 0-2-.9-2-2v-2h2v2h3v-4H8c-1.1 0-2-.9-2-2V6c0-1.1.9-2 2-2h3V2z"/></svg>') no-repeat center;
    mask-size: contain;
}

.cursor-follower {
    width: 8px;
    height: 8px;
    background: rgba(0, 255, 65, 0.3);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transition: all 0.3s ease;
}

/* Animated Background */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(45deg, #00ff41, #00cc33);
    border-radius: 50%;
    opacity: 0.7;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    /* Ocultar cursor customizado em dispositivos móveis */
    .cursor,
    .cursor-follower {
        display: none !important;
    }
    
    /* Mostrar CTA móvel apenas em dispositivos móveis */
    .hero-cta-mobile {
        display: block !important;
        margin-top: 30px;
        text-align: center;
    }
    
    .particle {
        width: 3px;
        height: 3px;
    }
}

.particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.particle:nth-child(3) {
    top: 80%;
    left: 40%;
    animation-delay: 4s;
}

.particle:nth-child(4) {
    top: 40%;
    left: 60%;
    animation-delay: 1s;
}

.particle:nth-child(5) {
    top: 10%;
    left: 90%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 1;
    }
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo i {
    font-size: 2rem;
    background: radial-gradient(ellipse at center, #00ff41, #00cc33, #008f11, #004d09);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: eyeBlink 3s infinite;
}

.logo span {
    background: radial-gradient(ellipse at center, #00ff41, #00cc33, #008f11, #004d09);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 900;
}

.eye-iris {
    color: #00ff41;
    font-weight: 900;
    font-size: 0.7em;
    position: relative;
    display: inline-block;
    background: radial-gradient(circle, #2c3e50 20%, #00ff41 20%, #00ff41 80%, #008f11 80%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 5px rgba(0, 255, 65, 0.6);
}

@keyframes eyeBlink {
    0%, 90%, 100% { transform: scaleY(1); }
    95% { transform: scaleY(0.1); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #00ff41;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #00ff41, #00cc33);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    justify-content: space-between;
    height: 20px;
    transition: all 0.3s ease;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00ff41;
    margin: 0;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 255, 65, 0.1) 0%, transparent 50%);
    z-index: 1;
}

/* Interactive Background Canvas */
.hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Animated Background Elements */
.bg-element {
    position: absolute;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

@media (max-width: 768px) {
    .bg-element {
        transform: scale(0.7);
        opacity: 0.15;
    }
}

.bg-line {
    width: 2px;
    height: 100px;
    background: linear-gradient(to bottom, transparent, #00ff41, transparent);
    animation: lineMove 8s linear infinite;
}

.bg-circle {
    width: 60px;
    height: 60px;
    border: 2px solid #00ff41;
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.bg-triangle {
    width: 0;
    height: 0;
    border-left: 20px solid transparent;
    border-right: 20px solid transparent;
    border-bottom: 35px solid #00ff41;
    animation: rotate 10s linear infinite;
}

.bg-graph {
    width: 80px;
    height: 40px;
    background: linear-gradient(45deg, transparent 30%, #00ff41 30%, #00ff41 70%, transparent 70%);
    animation: graphPulse 3s ease-in-out infinite;
}

@keyframes lineMove {
    0% { transform: translateY(-100vh) rotate(0deg); }
    100% { transform: translateY(100vh) rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.1; }
    50% { transform: scale(1.2); opacity: 0.3; }
}

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

@keyframes graphPulse {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(1.5); }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: slideInLeft 1s ease-out;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(45deg, #00ff41, #00cc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.subtitle {
    display: block;
    font-size: 2rem;
    color: #94a3b8;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hero-solution {
    font-size: 1.1rem;
    color: #00ff41;
    margin-bottom: 2rem;
    font-weight: 500;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #00ff41 0%, #00e63d 25%, #00cc33 50%, #00b82f 75%, #00a82b 100%);
    color: #ffffff;
    padding: 1.3rem 2.8rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 15px 35px rgba(0, 255, 65, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

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

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(0, 255, 65, 0.6),
        0 10px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #00ff41 0%, #00f23f 25%, #00e63d 50%, #00d939 75%, #00cc33 100%);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.btn-primary i {
    font-size: 1.3rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.hero-content {
    flex: 1;
    margin-right: 2.5rem; /* espaço extra entre texto e vídeo */
}

.hero-visual {
    flex-shrink: 0;
    max-width: 400px; /* Ajuste para alinhar com menu */
    width: 100%;
    margin-left: auto; /* garante alinhamento à direita do container */
}

.hero-visual {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.video-container {
    width: 100%;
    max-width: 500px; /* Ajuste o valor conforme necessário */
    margin-left: auto;
}

.video-wrapper {
    position: relative;
    width: 100%;
    border: 3px solid #00ff41;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    box-shadow: 
        0 0 30px rgba(0, 255, 65, 0.3),
        inset 0 0 20px rgba(0, 255, 65, 0.1);
    transition: all 0.3s ease;
    animation: videoGlow 3s ease-in-out infinite;
}

/* Quando não há vídeo, usa aspect-ratio padrão */
.video-wrapper:not(:has(iframe)):not(:has(video)) {
    aspect-ratio: 16/9;
}

/* Detecção automática de YouTube Shorts (formato vertical) */
.video-wrapper iframe[src*="youtube.com/embed"]:not([src*="list="]) {
    aspect-ratio: 9/16; /* Formato vertical para Shorts */
    max-width: 400px; /* Limita a largura para não ficar muito largo */
    margin: 0 auto;
    position: relative;
    border-radius: 17px;
    width: 100%;
    height: auto;
    /* Correções específicas para iOS */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Para vídeos horizontais normais do YouTube */
.video-wrapper iframe[src*="youtube.com/embed"][src*="list="],
.video-wrapper iframe[src*="youtube.com/embed"][src*="&t="] {
    aspect-ratio: 16/9;
    width: 100%;
    position: relative;
    border-radius: 17px;
}

/* Ajuste específico para container com Shorts */
.video-wrapper:has(iframe[src*="youtube.com/embed"]:not([src*="list="])) {
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 9/16;
    /* Correções específicas para iOS */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    overflow: hidden;
    position: relative;
}

/* Quando há iframe ou video genérico, se ajusta automaticamente */
.video-wrapper iframe:not([src*="youtube.com"]),
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 17px;
}

/* Para vídeos com dimensões específicas */
.video-wrapper:has(iframe:not([src*="youtube.com"])),
.video-wrapper:has(video) {
    height: auto;
    min-height: 200px;
}

/* Fallback para navegadores que não suportam :has() */
.video-wrapper.has-video {
    height: auto;
    min-height: 200px;
}

/* Configurações específicas para Wistia Player */
.video-wrapper:has(wistia-player) {
    max-width: 350px;
    width: 350px;
    height: 622px; /* 350 * (16/9) = altura para proporção 9:16 */
    margin: 0 auto;
    aspect-ratio: 9/16;
}

.video-wrapper wistia-player {
    width: 100%;
    height: 100%;
    border-radius: 17px;
    overflow: hidden;
    display: block;
}

/* Fallback para navegadores que não suportam :has() */
.video-wrapper.wistia-container {
    max-width: 350px;
    width: 350px;
    height: 622px;
    margin: 0 auto;
    aspect-ratio: 9/16;
}

.video-wrapper.has-video.shorts {
    max-width: 400px;
    margin: 0 auto;
    aspect-ratio: 9/16;
}

.video-wrapper.has-video iframe,
.video-wrapper.has-video video {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 17px;
}

.video-wrapper:hover {
    transform: scale(1.02);
    border-color: #00cc33;
    box-shadow: 
        0 0 40px rgba(0, 255, 65, 0.5),
        inset 0 0 30px rgba(0, 255, 65, 0.2);
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(0, 255, 65, 0.1));
    cursor: pointer;
}

.play-button {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00ff41, #00cc33);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    animation: playPulse 2s ease-in-out infinite;
}

.play-button:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
}

.play-button i {
    font-size: 2rem;
    color: #000000;
    margin-left: 5px;
}

.video-overlay h3 {
    color: #00ff41;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.video-overlay p {
    color: #ffffff;
    font-size: 1rem;
    text-align: center;
    opacity: 0.9;
}

/* Animações para o container de vídeo */
@keyframes videoGlow {
    0%, 100% {
        box-shadow: 
            0 0 30px rgba(0, 255, 65, 0.3),
            inset 0 0 20px rgba(0, 255, 65, 0.1);
    }
    50% {
        box-shadow: 
            0 0 40px rgba(0, 255, 65, 0.5),
            inset 0 0 30px rgba(0, 255, 65, 0.2);
    }
}

@keyframes playPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
    }
}

/* Responsive adjustments for video container */
@media (max-width: 768px) {
    .video-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .video-wrapper {
        border-width: 2px;
    }
    
    .play-button {
        width: 60px;
        height: 60px;
    }
    
    .play-button i {
        font-size: 1.5rem;
    }
    
    .video-overlay h3 {
        font-size: 1.2rem;
    }
    
    .video-overlay p {
        font-size: 0.9rem;
    }
    
    .hero-mobile-cards {
        display: none;
    }
}

@media (max-width: 480px) {
    .video-container {
        padding: 0 0.5rem;
    }
    
    .play-button {
        width: 50px;
        height: 50px;
    }
}

/* Correções específicas para dispositivos iOS */
@supports (-webkit-touch-callout: none) {
    .video-wrapper {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform;
    }
    
    .video-wrapper iframe[src*="youtube.com/embed"] {
        -webkit-transform: translateZ(0);
        transform: translateZ(0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        will-change: transform;
        position: relative;
        display: block;
    }
    
    /* Força o aspect-ratio correto em iOS para Shorts */
    .video-wrapper iframe[src*="youtube.com/embed"]:not([src*="list="]) {
        min-height: calc(100vw * 16/9);
        max-height: calc(400px * 16/9);
        object-fit: contain;
    }
    
    /* Container específico para iOS */
    .video-wrapper:has(iframe[src*="youtube.com/embed"]:not([src*="list="])) {
        height: auto;
        min-height: calc(100vw * 16/9);
        max-height: calc(400px * 16/9);
    }
}
    
    .play-button i {
        font-size: 1.2rem;
    }
    
    .video-overlay h3 {
        font-size: 1rem;
    }
    
    .video-overlay p {
        font-size: 0.8rem;
    }
}

/* Estilos dos floating cards comentados - substituídos pelo container de vídeo
.floating-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 255, 65, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s linear infinite;
    opacity: 0;
}

.floating-card:hover {
    transform: translateY(-8px) scale(1.05);
    border-color: rgba(0, 255, 65, 0.8);
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 15px 35px rgba(0, 255, 65, 0.3);
}

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

.floating-card:hover i {
    animation: iconBounce 0.6s ease-in-out, iconRotate 2s linear infinite;
    color: #00cc33;
}

.floating-card i {
    font-size: 2rem;
    color: #00ff41;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    animation: iconPulse 2s ease-in-out infinite;
}

.floating-card span {
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    transition: all 0.3s ease;
}

.floating-card:hover span {
    color: #00ff41;
    transform: scale(1.1);
}
*/

/* Animações dos Cards */
@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-5px) rotate(0.5deg);
    }
    50% {
        transform: translateY(-10px) rotate(0deg);
    }
    75% {
        transform: translateY(-5px) rotate(-0.5deg);
    }
}

@media (max-width: 768px) {
    @keyframes cardFloat {
        0%, 100% {
            transform: translateY(0px) rotate(0deg);
        }
        50% {
            transform: translateY(-5px) rotate(0deg);
        }
    }
}

@keyframes cardGlow {
    0%, 100% {
        box-shadow: 0 5px 15px rgba(0, 255, 65, 0.1);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 255, 65, 0.2);
    }
}

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

@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

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

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

/* Section Divider */
.section-divider {
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ff41, transparent);
    margin: 0;
    opacity: 0.3;
}

/* Problem & Solution Section */
.problem-solution {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.problem-solution .container {
    position: relative;
    z-index: 2;
}

/* Problem & Solution Background Elements */
.problem-solution-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.warning-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.warning-particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #e74c3c;
    border-radius: 50%;
    opacity: 0.6;
    animation: warningFloat 8s ease-in-out infinite;
}

.warning-particle:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.warning-particle:nth-child(2) {
    top: 60%;
    left: 85%;
    animation-delay: 2s;
}

.warning-particle:nth-child(3) {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
}

.warning-particle:nth-child(4) {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
}

.warning-particle:nth-child(5) {
    top: 50%;
    left: 40%;
    animation-delay: 3s;
}

.solution-glow {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(46, 204, 113, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: solutionPulse 6s ease-in-out infinite;
}

.floating-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    font-size: 24px;
    opacity: 0.1;
    animation: iconFloat 10s ease-in-out infinite;
}

.floating-icon:nth-child(1) {
    top: 15%;
    left: 15%;
    color: #e74c3c;
    animation-delay: 0s;
}

.floating-icon:nth-child(2) {
    top: 70%;
    left: 80%;
    color: #f39c12;
    animation-delay: 3s;
}

.floating-icon:nth-child(3) {
    top: 40%;
    left: 90%;
    color: #2ecc71;
    animation-delay: 6s;
}

@keyframes warningFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
        opacity: 0.3;
    }
}

@keyframes solutionPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.1;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    33% {
        transform: translateY(-15px) rotate(120deg);
    }
    66% {
        transform: translateY(-5px) rotate(240deg);
    }
}

.section-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.problem, .solution {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.problem:hover, .solution:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 65, 0.4);
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #00ff41, #00cc33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.icon-wrapper i {
    font-size: 1.5rem;
    color: #0a0e1a;
}

.problem h3, .solution h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ff41;
}

.benefits-list {
    list-style: none;
    margin-top: 1.5rem;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.benefits-list i {
    color: #00ff41;
    font-size: 1.2rem;
}

.problem-details {
    margin-top: 1.5rem;
}

.problem-details p {
    margin-bottom: 1rem;
    color: #cbd5e1;
    font-weight: 500;
}

.problem-list {
    list-style: none;
    margin-top: 1rem;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.problem-list i {
    color: #e74c3c;
    font-size: 1.2rem;
}

/* Strategy Section */
.strategy {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1e2a3a 50%, #0a0e1a 100%);
    position: relative;
    overflow: hidden;
}

.strategy .container {
    position: relative;
    z-index: 2;
}

/* Strategy Background Elements */
.strategy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.strategy-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.strategy-line {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(52, 152, 219, 0.2), transparent);
    animation: strategyLineMove 20s linear infinite;
}

.strategy-line:nth-child(1) {
    top: 15%;
    width: 40%;
    left: 30%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.strategy-line:nth-child(2) {
    top: 85%;
    width: 35%;
    left: 35%;
    animation-delay: 10s;
    transform: rotate(-10deg);
}

.strategy-line:nth-child(3) {
    top: 50%;
    width: 25%;
    left: 75%;
    animation-delay: 15s;
    transform: rotate(45deg);
}

.strategy-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.strategy-node {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #3498db;
    border-radius: 50%;
    border: 2px solid rgba(52, 152, 219, 0.3);
    animation: strategyNodePulse 4s ease-in-out infinite;
}

.strategy-node:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.strategy-node:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-delay: 1s;
}

.strategy-node:nth-child(3) {
    top: 70%;
    left: 25%;
    animation-delay: 2s;
}

.strategy-node:nth-child(4) {
    top: 60%;
    left: 75%;
    animation-delay: 3s;
}

.strategy-arrows {
    position: absolute;
    width: 100%;
    height: 100%;
}

.strategy-arrow {
    position: absolute;
    font-size: 20px;
    color: #3498db;
    opacity: 0.3;
    animation: arrowMove 8s ease-in-out infinite;
}

.strategy-arrow:nth-child(1) {
    top: 35%;
    left: 40%;
    animation-delay: 0s;
}

.strategy-arrow:nth-child(2) {
    top: 65%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes strategyLineMove {
    0% {
        transform: translateX(-100%) rotate(var(--rotation, 0deg));
        opacity: 0;
    }
    50% {
        opacity: 0.15;
    }
    100% {
        transform: translateX(100%) rotate(var(--rotation, 0deg));
        opacity: 0;
    }
}

@keyframes strategyNodePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(52, 152, 219, 0.4);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 0 10px rgba(52, 152, 219, 0);
    }
}

@keyframes arrowMove {
    0%, 100% {
        transform: translateX(0px);
        opacity: 0.3;
    }
    50% {
        transform: translateX(20px);
        opacity: 0.7;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #00ff41, #00cc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.strategy-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto 3rem;
    padding: 2rem 0;
}

.timeline-connector {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        transparent 0%, 
        rgba(0, 255, 65, 0.3) 10%, 
        rgba(0, 255, 65, 0.8) 50%, 
        rgba(0, 255, 65, 0.3) 90%, 
        transparent 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 255, 65, 0.4);
}

.timeline-item {
    position: relative;
    margin: 4rem 0;
    display: flex;
    align-items: center;
    opacity: 0;
    animation: timelineSlideIn 0.8s ease forwards;
}

.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.4s; }
.timeline-item:nth-child(4) { animation-delay: 0.6s; }

.timeline-marker {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00ff41, #00cc33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    box-shadow: 0 0 30px rgba(0, 255, 65, 0.6);
    transition: all 0.3s ease;
}

.timeline-marker:hover {
    transform: translateX(-50%) scale(1.1);
    box-shadow: 0 0 40px rgba(0, 255, 65, 0.8);
}

.marker-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(0, 255, 65, 0.3);
    animation: pulse 2s infinite;
}

.timeline-marker i {
    font-size: 2rem;
    color: #0a0e1a;
    z-index: 1;
}

.timeline-content {
    width: 45%;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    text-align: left;
}

.timeline-content:hover {
    border-color: rgba(0, 255, 65, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 65, 0.2);
}

.timeline-badge {
    display: inline-block;
    background: linear-gradient(45deg, #00ff41, #00cc33);
    color: #0a0e1a;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.timeline-arrow {
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 15px solid transparent;
}

.timeline-item:nth-child(odd) .timeline-arrow {
    left: -30px;
    border-right-color: rgba(0, 255, 65, 0.2);
    transform: translateY(-50%);
}

.timeline-item:nth-child(even) .timeline-arrow {
    right: -30px;
    border-left-color: rgba(0, 255, 65, 0.2);
    transform: translateY(-50%);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.3;
    }
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ff41;
}

.strategy-footer {
    text-align: center;
    font-size: 1.2rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.services .container {
    position: relative;
    z-index: 2;
}

/* Services Background Elements */
.services-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.digital-grid {
    position: absolute;
    width: 100%;
    height: 100%;
}

.grid-dot {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #9b59b6;
    border-radius: 50%;
    animation: gridPulse 6s ease-in-out infinite;
}

.grid-dot:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.grid-dot:nth-child(2) {
    top: 20%;
    left: 80%;
    animation-delay: 1s;
}

.grid-dot:nth-child(3) {
    top: 50%;
    left: 35%;
    animation-delay: 2s;
}

.grid-dot:nth-child(4) {
    top: 50%;
    left: 65%;
    animation-delay: 3s;
}

.grid-dot:nth-child(5) {
    top: 80%;
    left: 25%;
    animation-delay: 4s;
}

.grid-dot:nth-child(6) {
    top: 80%;
    left: 75%;
    animation-delay: 5s;
}

.service-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(155, 89, 182, 0.3), transparent);
    animation: waveMove 15s linear infinite;
}

.wave:nth-child(1) {
    top: 30%;
    animation-delay: 0s;
}

.wave:nth-child(2) {
    top: 50%;
    animation-delay: 5s;
}

.wave:nth-child(3) {
    top: 70%;
    animation-delay: 10s;
}

.floating-service-icons {
    position: absolute;
    width: 100%;
    height: 100%;
}

.service-bg-icon {
    position: absolute;
    font-size: 28px;
    opacity: 0.08;
    animation: serviceIconFloat 12s ease-in-out infinite;
}

.service-bg-icon:nth-child(1) {
    top: 25%;
    left: 10%;
    color: #9b59b6;
    animation-delay: 0s;
}

.service-bg-icon:nth-child(2) {
    top: 60%;
    left: 85%;
    color: #8e44ad;
    animation-delay: 4s;
}

.service-bg-icon:nth-child(3) {
    top: 80%;
    left: 50%;
    color: #9b59b6;
    animation-delay: 8s;
}

@keyframes gridPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.5);
        opacity: 0.8;
    }
}

@keyframes waveMove {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

@keyframes serviceIconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(-10px) rotate(180deg);
    }
    75% {
        transform: translateY(-15px) rotate(270deg);
    }
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 255, 65, 0.4);
    box-shadow: 0 20px 40px rgba(0, 255, 65, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #00ff41, #00cc33);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #0a0e1a;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #00ff41;
}

/* Social Proof Section */
.social-proof {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0f1419 0%, #1e2a3a 50%, #0a0e1a 100%);
    position: relative;
    overflow: hidden;
}

.social-proof .container {
    position: relative;
    z-index: 2;
}

/* Social Proof Background Elements */
.social-proof-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.stats-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stat-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #e67e22;
    border-radius: 50%;
    animation: statsFloat 10s ease-in-out infinite;
}

.stat-particle:nth-child(1) {
    top: 25%;
    left: 15%;
    animation-delay: 0s;
}

.stat-particle:nth-child(2) {
    top: 45%;
    left: 85%;
    animation-delay: 2.5s;
}

.stat-particle:nth-child(3) {
    top: 75%;
    left: 25%;
    animation-delay: 5s;
}

.stat-particle:nth-child(4) {
    top: 35%;
    left: 70%;
    animation-delay: 7.5s;
}

.growth-lines {
    position: absolute;
    width: 100%;
    height: 100%;
}

.growth-line {
    position: absolute;
    width: 3px;
    background: linear-gradient(to top, transparent, #e67e22, transparent);
    animation: growthMove 8s ease-in-out infinite;
}

.growth-line:nth-child(1) {
    top: 20%;
    left: 30%;
    height: 60%;
    animation-delay: 0s;
}

.growth-line:nth-child(2) {
    top: 10%;
    left: 50%;
    height: 80%;
    animation-delay: 2.5s;
}

.growth-line:nth-child(3) {
    top: 30%;
    left: 70%;
    height: 50%;
    animation-delay: 5s;
}

.floating-stats {
    position: absolute;
    width: 100%;
    height: 100%;
}

.stats-icon {
    position: absolute;
    font-size: 32px;
    opacity: 0.1;
    animation: statsIconFloat 14s ease-in-out infinite;
}

.stats-icon:nth-child(1) {
    top: 20%;
    left: 10%;
    color: #e67e22;
    animation-delay: 0s;
}

.stats-icon:nth-child(2) {
    top: 60%;
    left: 80%;
    color: #d35400;
    animation-delay: 4.5s;
}

.stats-icon:nth-child(3) {
    top: 80%;
    left: 40%;
    color: #e67e22;
    animation-delay: 9s;
}

@keyframes statsFloat {
    0%, 100% {
        transform: translateY(0px) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-30px) scale(1.3);
        opacity: 1;
    }
}

@keyframes growthMove {
    0% {
        transform: scaleY(0);
        opacity: 0;
    }
    50% {
        transform: scaleY(1);
        opacity: 0.8;
    }
    100% {
        transform: scaleY(0);
        opacity: 0;
    }
}

@keyframes statsIconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-25px) rotate(90deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
    75% {
        transform: translateY(-20px) rotate(270deg);
    }
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.result-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.result-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 65, 0.4);
}

.result-icon i {
    font-size: 3rem;
    color: #00ff41;
    margin-bottom: 1rem;
}

.result-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: #00ff41;
    margin-bottom: 0.5rem;
}

.result-label {
    font-size: 1.1rem;
    color: #cbd5e1;
}

/* Benefits Section */
.benefits {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.benefits .container {
    position: relative;
    z-index: 2;
}

/* Benefits Background Elements */
.benefits-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.success-rays {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ray {
    position: absolute;
    width: 2px;
    height: 100px;
    background: linear-gradient(to top, transparent, #00ff41, transparent);
    transform-origin: bottom center;
    animation: rayRotate 20s linear infinite;
}

.ray:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.ray:nth-child(2) {
    top: 30%;
    left: 80%;
    animation-delay: 4s;
}

.ray:nth-child(3) {
    top: 60%;
    left: 15%;
    animation-delay: 8s;
}

.ray:nth-child(4) {
    top: 70%;
    left: 75%;
    animation-delay: 12s;
}

.ray:nth-child(5) {
    top: 50%;
    left: 50%;
    animation-delay: 16s;
}

.benefit-sparkles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.sparkle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00cc33;
    border-radius: 50%;
    animation: sparkleShine 5s ease-in-out infinite;
}

.sparkle:nth-child(1) {
    top: 25%;
    left: 30%;
    animation-delay: 0s;
}

.sparkle:nth-child(2) {
    top: 55%;
    left: 70%;
    animation-delay: 1.25s;
}

.sparkle:nth-child(3) {
    top: 75%;
    left: 40%;
    animation-delay: 2.5s;
}

.sparkle:nth-child(4) {
    top: 35%;
    left: 85%;
    animation-delay: 3.75s;
}

.floating-benefits {
    position: absolute;
    width: 100%;
    height: 100%;
}

.benefit-icon {
    position: absolute;
    font-size: 30px;
    opacity: 0.08;
    animation: benefitIconFloat 16s ease-in-out infinite;
}

.benefit-icon:nth-child(1) {
    top: 15%;
    left: 10%;
    color: #00ff41;
    animation-delay: 0s;
}

.benefit-icon:nth-child(2) {
    top: 65%;
    left: 90%;
    color: #00cc33;
    animation-delay: 5.5s;
}

.benefit-icon:nth-child(3) {
    top: 85%;
    left: 60%;
    color: #00ff41;
    animation-delay: 11s;
}

@keyframes rayRotate {
    0% {
        transform: rotate(0deg);
        opacity: 0;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg);
        opacity: 0;
    }
}

@keyframes sparkleShine {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(2);
        opacity: 1;
    }
}

@keyframes benefitIconFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg) scale(1);
    }
    25% {
        transform: translateY(-30px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translateY(-20px) rotate(180deg) scale(1);
    }
    75% {
        transform: translateY(-25px) rotate(270deg) scale(1.1);
    }
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
    border-color: rgba(0, 255, 65, 0.4);
}

.benefit-item i {
    font-size: 2rem;
    color: #00ff41;
    min-width: 40px;
}

.benefit-item span {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Final CTA Section */
.final-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0e1a 0%, #1a1f2e 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-icon i {
    font-size: 4rem;
    color: #00ff41;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.final-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #00ff41, #00cc33);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-cta p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.3rem;
    color: #00ff41;
    font-weight: 600;
    margin-bottom: 2rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #25d366, #128c7e);
    color: #ffffff;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp i {
    font-size: 1.5rem;
}

.btn-checkout {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #ffffff;
    padding: 1.3rem 2.8rem;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 15px 35px rgba(102, 126, 234, 0.4),
        0 5px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* CTA Button Mobile - Oculto por padrão */
.hero-cta-mobile {
    display: none;
    text-align: center;
    margin-top: 2rem;
    padding: 0 1rem;
}

.btn-checkout-mobile {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    color: #ffffff;
    padding: 0.8rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 10px 25px rgba(102, 126, 234, 0.3),
        0 3px 10px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 320px;
    justify-content: center;
    white-space: nowrap;
}

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

.btn-checkout-mobile:hover::before {
    left: 100%;
}

.btn-checkout-mobile:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 
        0 20px 40px rgba(102, 126, 234, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, #5a67d8, #6b46c1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-checkout-mobile:active {
    transform: translateY(-1px) scale(1.01);
    transition: all 0.1s ease;
}

.btn-checkout-mobile i {
    font-size: 1rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

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

.btn-checkout:hover::before {
    left: 100%;
}

.btn-checkout:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 
        0 25px 50px rgba(102, 126, 234, 0.6),
        0 10px 25px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(45deg, #5a67d8, #6b46c1);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-checkout:active {
    transform: translateY(-2px) scale(1.02);
    transition: all 0.1s ease;
}

.btn-checkout i {
    font-size: 1.3rem;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.btn-checkout .icon-fire {
    margin-left: 8px;
    animation: flicker 2s infinite alternate;
}

/* Testimonials Grid */
.testimonials-slider {
    margin-top: 60px;
    padding: 0 20px;
}

.slider-container {
    max-width: 900px;
    margin: 0 auto;
}

.slider-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: start;
}

@media (max-width: 992px) {
    .slider-wrapper {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .slider-wrapper {
        display: flex;
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 10px 0;
        /* Hide scrollbar but keep functionality */
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE and Edge */
    }
    
    .slider-wrapper::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
}

@media (max-width: 768px) {
    .testimonials-slider {
        margin-top: 2rem;
        padding-bottom: 2rem;
    }
    
    .slider-container {
        padding: 1.5rem 0;
    }
    
    .slider-wrapper {
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .testimonials-slider {
        margin-top: 1.5rem;
        padding-bottom: 2rem;
    }
    
    .slider-container {
        padding: 1rem 0;
    }
    
    .slider-wrapper {
        gap: 1rem;
    }
}

.slide {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: auto;
}

.slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 255, 65, 0.2);
}

.slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .slide {
        flex: 0 0 85%;
        scroll-snap-align: center;
        min-width: 250px;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 15px;
    }
    
    .slide img {
        width: 100%;
        height: auto;
        object-fit: contain;
        margin-bottom: 15px;
        max-height: none;
    }
}

@media (max-width: 480px) {
    .slide {
        flex: 0 0 90%;
        min-width: 220px;
        padding: 12px;
    }
}

/* Navigation elements for testimonials */
.slider-nav,
.slider-dots {
    display: none;
}

@media (max-width: 768px) {
    .slider-nav {
        display: flex;
        justify-content: space-between;
        margin-top: 1.5rem;
        padding: 0 10px;
        position: relative;
        z-index: 5;
    }
    
    .slider-nav button {
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(0, 255, 65, 0.3);
        color: #00ff41;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }
    
    .slider-nav button:hover {
        background: rgba(0, 255, 65, 0.2);
    }
    
    .slider-nav button:active {
        transform: scale(0.95);
    }
    
    .slider-dots {
        display: flex;
        justify-content: center;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    
    .slider-dots .dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.2);
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .slider-dots .dot.active {
        background: #00ff41;
        transform: scale(1.2);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .testimonials-slider {
        margin-top: 40px;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .testimonials-slider {
        margin-top: 30px;
    }
}

/* Contact Info Box */
.contact-info-box {
    background-color: #0a0e1a;
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 10px;
    padding: 20px;
    margin: 20px auto;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: none; /* Hidden by default, will be shown only on mobile */
}

.contact-info-box h3 {
    color: #00ff41;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.contact-info-box p {
    color: #cbd5e1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.contact-info-box i {
    color: #00ff41;
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background-color: #0a0e1a;
    border-top: 1px solid rgba(0, 255, 65, 0.2);
    padding: 3rem 0 1rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-info {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    background: radial-gradient(ellipse at center, #00ff41, #00cc33, #008f11, #004d09);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: eyeBlink 3s infinite;
    margin-right: 5px;
}

.footer-logo span {
    background: radial-gradient(ellipse at center, #00ff41, #00cc33, #008f11, #004d09);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.5rem;
    font-weight: 900;
}

.footer-logo p {
    color: #cbd5e1;
    margin-top: 0.5rem;
}

.footer-links h4,
.footer-contact h4 {
    color: #00ff41;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #00ff41;
}

.footer-contact p {
    color: #cbd5e1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .footer-contact p {
        justify-content: center;
    }
    
    .contact-info-box {
        display: block;
        position: static;
        margin: 20px auto;
        width: 90%;
        max-width: 320px;
        padding: 15px;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }
    
    .contact-info-box h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }
    
    .contact-info-box p {
        margin-bottom: 8px;
        font-size: 0.9rem;
    }
}

.footer-contact i {
    color: #00ff41;
}

/* Footer Animation */
.footer-animation {
    display: flex;
    justify-content: center;
    align-items: center;
}

.growth-animation {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 255, 65, 0.2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

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

.growth-chart {
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 8px;
    height: 100px;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.chart-bar {
    width: 20px;
    background: linear-gradient(to top, #00cc33, #00ff41);
    border-radius: 4px 4px 0 0;
    animation: growBar 3s ease-out infinite;
    animation-delay: var(--delay);
    height: var(--height);
    box-shadow: 0 0 10px rgba(0, 255, 65, 0.3);
}

.growth-arrow {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.growth-arrow i {
    font-size: 2rem;
    color: #00ff41;
    animation: arrowBounce 2s ease-in-out infinite;
}

.growth-text {
    font-size: 1.1rem;
    font-weight: 600;
    color: #00ff41;
    position: relative;
    z-index: 1;
}

@keyframes growBar {
    0% {
        height: 0;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        height: var(--height);
        opacity: 1;
    }
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 255, 65, 0.1);
    color: #94a3b8;
}

/* Animations */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: rgba(10, 14, 26, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
        transition: left 0.3s ease;
        z-index: 999;
        display: flex;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .hamburger {
        display: flex;
        z-index: 1000;
    }
    
    .logo i {
        font-size: 1.5rem; /* reduzir ícone em mobile */
    }
    
    .logo span {
        font-size: 1.1rem; /* reduzir texto em mobile */
    }
    
    .hero {
        padding: 100px 0 80px;
        min-height: 100vh;
        display: flex;
        align-items: flex-start;
        justify-content: center;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content {
        margin-right: 0; /* remove margem em mobile */
    }
    
    .hero-content {
        padding: 0;
        order: 2;
    }
    
    .hero-visual {
        display: none;
    }
    
    .hero-mobile-cards {
        display: block;
        margin-top: 2rem;
    }
    
    .hero-mobile-cards .floating-cards-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }
    
    .hero-description,
    .hero-solution {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-cta {
        display: none; /* ocultar CTA em mobile */
    }
    
    .floating-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .floating-card {
        padding: 10px;
        min-height: 80px;
    }
    
    .section-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .problem, .solution {
        padding: 1.5rem;
    }
    
    .problem-list li, .benefits-list li {
        margin-bottom: 0.8rem;
    }
    
    .strategy-timeline {
        padding: 1rem 0;
    }
    
    .timeline-connector {
        left: 30px;
        width: 3px;
    }
    
    .timeline-item {
        margin: 2rem 0;
        padding-left: 80px;
    }
    
    .timeline-marker {
        left: 30px;
        width: 60px;
        height: 60px;
        transform: translateX(-50%);
    }
    
    .timeline-marker i {
        font-size: 1.5rem;
    }
    
    .timeline-content {
        width: 100%;
        margin: 0 !important;
        text-align: left !important;
        padding: 1.5rem;
    }
    
    .timeline-arrow {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .results-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .result-card {
        padding: 1.5rem;
    }
    
    .result-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
        min-height: auto;
    }
    
    .slider-container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .slider-wrapper {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .slide {
        padding: 1rem;
    }
    
    .final-cta {
        padding: 3rem 0;
    }
    
    .cta-content {
        padding: 1.5rem;
    }
    
    .cta-icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .btn-whatsapp {
        width: 100%;
        justify-content: center;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo {
        margin-bottom: 1rem;
    }
    
    .footer-links, .footer-contact {
        margin-bottom: 1rem;
    }
    
    .growth-animation {
        padding: 1.5rem;
    }
    
    .growth-chart {
        height: 80px;
    }
}

/* Typography Responsive Adjustments */
@media (max-width: 768px) {
    body {
        line-height: 1.5;
    }
    
    h1, h2, h3, h4, h5, h6 {
        margin-bottom: 0.8rem;
    }
    
    p {
        margin-bottom: 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    
    .section-header p {
        font-size: 1rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-title .highlight {
        font-size: 1.9rem;
    }
    
    .hero-title .subtitle {
        font-size: 1.2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .section-header p {
        font-size: 0.9rem;
    }
    
    .floating-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-card {
        min-height: 70px;
    }
    
    .floating-card i {
        font-size: 1.2rem;
    }
    
    .floating-card span {
        font-size: 0.9rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-whatsapp,
    .btn-checkout {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .problem h3, .solution h3 {
        font-size: 1.3rem;
    }
    
    .problem p, .solution p, .problem-list li, .benefits-list li {
        font-size: 0.9rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-description {
        font-size: 0.9rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        top: -20px;
        font-size: 1.5rem;
    }
    
    .service-title {
        font-size: 1.3rem;
    }
    
    .service-description {
        font-size: 0.9rem;
    }
    
    .final-cta h2 {
        font-size: 1.8rem;
    }
}