.price-section-container {
    font-family: 'Inter', sans-serif;
    color: #EAEAEA;
}
.price-section-container .gradient-text {
    background: linear-gradient(90deg, #00eaff, #00f977);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.price-section-container .shine-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #00F7A7, #008B83, #00F7A7, #008B83);
    background-size: 300% 300%;
    animation: shine-animation-price 4s ease-in-out infinite;
}
@keyframes shine-animation-price {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.pulse-live {
    animation: pulse-live-animation 2s infinite;
}
@keyframes pulse-live-animation {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: .7;
    }
}
/* Estilos Globais e Animações */
body {
     font-family: "Sora", sans-serif;
    background-color: #0B110F;
    color: #EAEAEA;
    overflow-x: hidden;
}
.gradient-text {
    background: linear-gradient(90deg, #00eaff, #00f977);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}
.shine-button {
    position: relative;
    overflow: hidden;
    background: linear-gradient(45deg, #00F7A7, #008B83, #00F7A7, #008B83);
    background-size: 300% 300%;
    animation: shine-animation 4s ease-in-out infinite;
}
@keyframes shine-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
details > summary {
    list-style: none;
    cursor: pointer;
}
details > summary::-webkit-details-marker {
    display: none;
}
details .faq-arrow {
    transition: transform 0.3s ease-in-out;
}
details[open] .faq-arrow {
    transform: rotate(180deg);
}
.reveal {
    position: relative;
    transform: translateY(100px);
    opacity: 0;
    transition: 1s all ease;
}
.reveal.active {
    transform: translateY(0);
    opacity: 1;
}
.horizontal-scrollbar::-webkit-scrollbar {
    height: 8px;
}
.horizontal-scrollbar::-webkit-scrollbar-track {
    background: #1a202c;
    border-radius: 10px;
}
.horizontal-scrollbar::-webkit-scrollbar-thumb {
    background-image: linear-gradient(to right, #00eaff, #00f977);
    border-radius: 10px;
}
.bonus-card {
    position: relative;
    overflow: hidden;
    background-color: #111827;
    border-radius: 0.5rem;
}
.bonus-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: 0.5rem;
    border: 2px solid transparent;
    background: linear-gradient(var(--angle), #00eaff, #00f977, #00eaff) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: gradient-border-animation 4s linear infinite;
    --angle: 0deg;
}
/* ESTILOS PARA CARROSSÉIS AUTOMÁTICOS */
.scrolling-carousel {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
    mask-image: linear-gradient(to right, transparent, white 10%, white 90%, transparent);
}
.scrolling-track {
    display: flex;
    width: fit-content;
}
.scrolling-track:hover {
    animation-play-state: paused;
}
.scrolling-track .carousel-item {
    flex-shrink: 0;
    width: auto;
    margin: 0 0.5rem;
}

@keyframes scroll-left-linear {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Container do carrossel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Track principal com animao contínua */
#sites-track {
    display: flex;
    width: max-content;
    animation: scroll-left-linear 60s linear infinite;
    will-change: transform;
}

/* Responsividade: mais rápido no mobile */
@media (max-width: 768px) {
    #sites-track {
        animation: scroll-left-linear 30s linear infinite !important;
    }
}

/* Estilo dos itens */
.carousel-item {
    flex-shrink: 0;
    margin: 0;
    padding: 15px;
    height: 256px;
}

/* Estilo das imagens */
.carousel-item img {
    display: block;
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 0.5rem;
}

@keyframes gradient-border-animation {
    to { --angle: 360deg; }
}
@property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}
.carousel-item {
    flex-shrink: 0;
    scroll-snap-align: center;
}
.carousel-item img {
    height: 100%;
    width: auto;
    object-fit: contain;
    border-radius: 0.5rem;
}
#cursos-carrossel .carousel-item { height: 224px; }
#sites-carrossel .carousel-item { height: 256px; }

/* ESTILOS PARA A NOVA SEÇÃO DE SCROLL ANIMADO */
.scroll-animation-section {
    height: 180vh; /* Durao do scroll para desktop */
    position: relative;
}
.sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 10vh;
    perspective: 1000px;
}
.phone-hand-animation {
    width: 100%;
    max-width: 1200px;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform-origin: bottom center;
}

/* ESTILOS PARA A SEÇÃO DE FAROL */
.spotlight-section {
    position: relative;
    overflow: hidden;
    background-color: #0B110F; /* Cor de fundo escura */
}
.spotlight-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 249, 119, 0.1), transparent 70%);
    animation: spotlight-animation 8s linear infinite;
    z-index: 0;
}
@keyframes spotlight-animation {
    0% { transform: translateX(-50%); }
    50% { transform: translateX(150%); }
    100% { transform: translateX(-50%); }
}
.spotlight-section > * {
    position: relative;
    z-index: 1;
}

/* AJUSTES RESPONSIVOS PARA MOBILE */
@media (max-width: 768px) {
    .scroll-animation-section {
        height: 120vh; /* Altura da animação reduzida para mobile */
    }
}
/* Adaptação das classes do Elementor para uma classe genérica 'lightning-button' */
.lightning-button {
    position: relative;
    background-color: #000;
    color: #fff;
    border-radius: 50px;
    padding: 15px 25px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255,255,255,0.1);
    border: none;
    cursor: pointer; /* Indica que é clicvel */
    display: inline-flex; /* Garante que o botão se ajuste ao conteúdo */
    align-items: center; /* Alinha verticalmente o conteúdo */
    justify-content: center; /* Centraliza horizontalmente o conteúdo */
    gap: 8px; /* Espaçamento entre ícone e texto */
    text-decoration: none; /* Remove sublinhado se for um link */
    font-size: 16px; /* Tamanho da fonte padro */
    font-weight: 500; /* Peso da fonte */
}

.lightning-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: conic-gradient(
        transparent 270deg,
        rgba(255,255,255,0.4),
        transparent
    );
    animation: rotateGlow 4s linear infinite;
    z-index: 0; /* Coloca o pseudo-elemento abaixo do contedo e do after */
}

.lightning-button::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #000;
    border-radius: 50px;
    z-index: 1; /* Garante que o after cubra o before */
    transition: background 0.4s ease; /* Suaviza a transição do hover */
}

.lightning-button .button-content-wrapper {
    position: relative;
    z-index: 2; /* Garante que o contedo esteja acima de tudo */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* espaamento ideal entre ícone e texto */
}

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

.lightning-button .button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
}

.lightning-button .button-icon svg {
    width: 20px; /* ajuste para o tamanho ideal do seu ícone */
    height: 20px;
    vertical-align: middle;
    fill: currentColor; /* Faz o SVG herdar a cor do texto */
}

/* Hover com gradiente verde escuro */
.lightning-button:hover::after {
    background: linear-gradient(135deg, #064e3b, #022c22);
}
/* ESTILOS PARA A SEÇÃO DE FAROL */
.hero-spotlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%; /* Inicia fora da tela  esquerda */
    width: 200%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(0, 249, 119, 0.25) 0%, transparent 70%);
    animation: hero-spotlight-animation 3s linear infinite;
    z-index: 0; /* Atrs do conteúdo */
    pointer-events: none;
    filter: blur(60px); /* Suaviza a luz */
}

@keyframes hero-spotlight-animation {
    0% { transform: translateX(-100%); }   /* Início à esquerda */
    50% { transform: translateX(0%); }     /* Centro da tela */
    100% { transform: translateX(100%); }  /* Final à direita */
}

/* Desativa animaão em telas pequenas para melhor desempenho */
@media (max-width: 640px) {
    .hero-spotlight::before {
        display: none;
    }
}
.font-orbitron {
            font-family: 'Orbitron', sans-serif;
        }

        /* Container do card com animação */
        .neon-border-card {
            position: relative;
            z-index: 1;
            overflow: hidden;
            padding: 2px; /* Espessura da "borda" animada */
            border-radius: 1rem; /* 16px */
            display: flex; /* Para garantir que o conteúdo preencha a altura */
        }

        /* O pseudo-elemento que cria o gradiente animado */
        .neon-border-card::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 200%; /* Tamanho maior para rotação suave */
            height: 200%;
            z-index: -2;
            background: conic-gradient(
                transparent,
                transparent,
                #39ff14, /* Verde neon */
                transparent,
                transparent
            );
            animation: rotate 6s linear infinite;
            transform-origin: center center;
            transform: translate(-50%, -50%);
        }

        /* Fundo interno do card para cobrir o gradiente, revelando apenas a borda */
        .card-content {
            background-color: #111111; /* Cor de fundo interna dos cards */
            border: 1px solid rgba(57, 255, 20, 0.1); /* Borda estática sutil */
            width: 100%;
            height: 100%;
        }

        /* Animação de rotação para a borda neon */
        @keyframes rotate {
            from {
                transform: translate(-50%, -50%) rotate(0deg);
            }
            to {
                transform: translate(-50%, -50%) rotate(360deg);
            }
        }
 /* --- Estilos Globais --- */
  .learning-funnel-container {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 100%;
            max-width: 1100px;
            margin: 0 auto;
            margin-left: 110px;
            overflow: hidden;
            font-family: sans-serif;
        }
   .funnel-node path, .funnel-node rect, .funnel-node circle, .funnel-node line, .funnel-node text {
            fill: #444;
            stroke: #444;
            stroke-width: 1.5;
            transition: all 0.5s ease-in-out;
        }
        .funnel-node-text {
            font-size: 16px;
            fill: #444;
            text-anchor: middle;
            font-weight: bold;
            transition: all 0.5s ease-in-out;
        }
        .funnel-path-base {
            stroke: url(#tapered-gray-horizontal);
            stroke-width: 3;
            fill: none;
        }
        .funnel-path-light {
            fill: none;
            stroke: #00ff9d; 
            stroke-width: 1.5; 
            filter: drop-shadow(0 0 1px #00ff9d) drop-shadow(0 0 3px #00ff9d);
            stroke-dasharray: 250; 
            stroke-dashoffset: 250;
            transition: stroke-dashoffset 3s ease-in-out;
        }
        .funnel-node.active path, .funnel-node.active rect, .funnel-node.active circle, .funnel-node.active line, .funnel-node.active text {
            fill: #00ff9d;
            stroke: #00ff9d;
            filter: drop-shadow(0 0 4px #00ff9d);
        }
        .funnel-node-text.active {
            fill: #fff;
        }
        .funnel-path-light.active {
            stroke-dashoffset: 0;
        }
        @media (max-width: 768px) {
            .learning-funnel-container {
                margin:0 auto;
            }
            .funnel-path-base {
                stroke: url(#tapered-gray-vertical);
            }
            .funnel-node-text {
                font-size: 24px;
            }
        }
        /* 1) Variáveis do gradiente (extraídas da sua imagem) */

.gradient-text {
        background: linear-gradient(90deg, #00eaff, #00f977);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-fill-color: transparent;
    }
    .reveal {
        position: relative;
        transform: translateY(100px);
        opacity: 0;
        transition: 1s all ease;
    }
    .reveal.active {
        transform: translateY(0);
        opacity: 1;
    }
    .svg-light-section {
        position: relative;
        padding-top: 2rem;
        color: #EAEAEA; /* Cor do texto base */
        font-family: 'Inter', sans-serif; /* Fonte base */
    }
    .animated-svg-container {
        position: relative;
        z-index: 1;
        margin-bottom: -3rem; 
        pointer-events: none; 
    }
    .animated-path {
        /* Comprimento do trao (luz), espaçamento (escurido) */
        stroke-dasharray: 250 1800; 
        animation: move-light 5s linear infinite;
    }
    @keyframes move-light {
        from {
            stroke-dashoffset: 2050;
        }
        to {
            stroke-dashoffset: -250;
        }
    }
    .glowing-ball {
         /* Cor do brilho atualizada para ciano */
         filter: drop-shadow(0 0 12px #00eaff); 
    }
    .animated-card {
        background-color: #111827;
        border: 1px solid #374151;
        border-radius: 0.75rem;
        padding: 3rem 2rem;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        z-index: 2; 
    }
    .animated-card:hover {
        transform: translateY(-10px);
        /* Sombra com a nova cor */
        box-shadow: 0 20px 30px rgba(0, 234, 255, 0.1);
    }