.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: 'Inter', 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 animação 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; /* Duração 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 é clicável */
    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 padrão */
    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 conteúdo 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 conteúdo esteja acima de tudo */
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px; /* espaçamento 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);
}

