/* RESET BÁSICO */
html {
  scroll-behavior: smooth;
    overflow-x: hidden;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Fonte pode ser Poppins ou similar, adicione no HTML */
    font-family: Arial, sans-serif; 
}

:root {
    --color-dark: #0f1515; /* Fundo principal */
    --color-secondary-dark: #1f2727; /* Fundo dos cards/seções */
    --color-neon-light: #00FFEA; /* Cor neon (ciano/verde claro) */
    --color-neon-dark: #0ab1a3; /* Cor neon mais escura para o hover */
    --color-white: #ffffff;
    --color-gray: #b0b0b0;
    --color-red: #e5ffa4; /* Para preços originais */
}

body {
    background-color: var(--color-dark);
    color: var(--color-white);
    line-height: 1.6;
}

h1, h2 {
    text-align: center;
    color: var(--color-neon-light);
    margin-bottom: 20px;
}

section {
    padding: 60px 5%;
}

a {
    text-decoration: none;
    color: var(--color-neon-light);
}

/* BOTÃO PADRÃO */
.btn {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    border-radius: 8px;
    font-weight: bold;
    text-transform: uppercase;
    transition: background-color 0.3s, transform 0.3s, box-shadow 0.3s; /* Adicionado transform e box-shadow */
    position: relative; /* Necessário para o efeito de luz */
    overflow: hidden; /* Para garantir que o :before fique dentro */
    z-index: 1; /* Para o texto do botão ficar em cima */
}

.btn-primary {
    background-color: var(--color-neon-light);
    color: var(--color-dark);
    border: none;
    margin-top: 15px;
}

/* Efeito de luz de fundo */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background-color: var(--color-neon-light); /* Cor da luz */
    filter: blur(40px); /* O blur suave */
    opacity: 0; /* Começa invisível */
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 0; /* Fica atrás do botão */
    pointer-events: none;
}

.btn-primary:hover {
    background-color: var(--color-neon-dark);
    transform: translateY(-3px); /* Leve 'up' no hover */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    color: var(--color-dark); /* Garante a cor do texto */
}

.btn-primary:hover::before {
    opacity: 0.5; /* Aumenta a opacidade da luz */
    transform: translate(-50%, -50%) scale(1);
}


 /* VARIAÇÃO DO BOTÃO - PRETO COM CONTORNO VERDE */
.btn-primary2 {
    background-color: #000; /* Fundo preto */
    color: var(--color-neon-light); /* Texto verde */
    border: 2px solid var(--color-neon-light); /* Contorno verde */
    font-size: 12px; /* Fonte menor */
    margin-top: 15px;
}

/* Efeito de luz de fundo */
.btn-primary2::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background-color: var(--color-neon-light); /* Luz verde */
    filter: blur(40px);
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
    transition: opacity 0.4s ease, transform 0.4s ease;
    z-index: 0;
    pointer-events: none;
}

.btn-primary2:hover {
    background-color: var(--color-neon-light); /* Fica verde ao passar o mouse */
    color: #000; /* Texto preto no hover */
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.btn-primary2:hover::before {
    opacity: 0.4;
    transform: translate(-50%, -50%) scale(1);
}





/* 1. HEADER / HERO SECTION */
.hero-section {
    background: radial-gradient(circle at center, rgba(0, 255, 200, 0.1) 0%, rgba(15, 21, 21, 1) 70%);
    padding-top: 50px;
    text-align: center;
}

.hero-section h1 {
    font-size: 3em;
    text-shadow: 0 0 10px var(--color-neon-light);
}

.hero-section .subtitle {
    color: var(--color-gray);
    margin-bottom: 40px;
}

.hero-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* Efeito de Float */
    animation: float-light 4s ease-in-out infinite;
}

/* Efeito de Flutuação Leve */
@keyframes float-light {
    0% { transform: translateY(0); }
    50% { transform: translateY(-8px); } /* Flutuação de 8px */
    100% { transform: translateY(0); }
}


/* 2. SECTION PLANOS (PRICING) */
.pricing-section h2 {
    font-size: 2em;
    margin-bottom: 40px;
}

.plans-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap; /* Para responsividade em telas menores */
}

.plan-card {
    background-color: var(--color-secondary-dark);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    width: 300px; /* Largura padrão */
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
    position: relative;
    border: 2px solid transparent;
    transition: border-color 0.3s;
}

.plan-card.best-seller {
    border-color: var(--color-neon-light);
    box-shadow: 0 0 20px var(--color-neon-light);
}

.plan-card img {
    max-width: 80%;
    height: auto;
    margin-bottom: 20px;
}

.badge {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-red);
    color: var(--color-white);
    padding: 12px 20px;
    border-radius: 10px;
    font-size: 0.8em;
    font-weight: 600;
    color: #0d1212;
    text-transform: uppercase;
}

.price-details {
    margin-bottom: 20px;
}

.original-price {
    text-decoration: line-through;
    color: var(--color-gray);
    font-size: 0.9em;
}

.installments {
    font-size: 1.8em;
    font-weight: bold;
    color: var(--color-neon-light);
    margin: 5px 0;
}

.cash-price {
    font-size: 0.9em;
    color: var(--color-gray);
}

.promo-info {
    margin-top: 15px;
    border-top: 1px solid var(--color-dark);
    padding-top: 15px;
    color: var(--color-gray);
    display: flex;
    justify-content: space-around;
}

.benefit-icons {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--color-secondary-dark);
}

.benefit-icons > div {
    text-align: center;
    width: 200px;
    margin: 10px;
}

.benefit-icons .icon {
    font-size: 2em;
    color: var(--color-neon-light);
    display: block;
    margin-bottom: 5px;
}

/* 3. SECTION GARANTIA */
.guarantee-section {
    background-color: var(--color-secondary-dark);
    background: linear-gradient(to top, var(--color-dark) 0%, var(--color-secondary-dark) 50%, var(--color-dark) 100%);
    text-align: center;
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 0;
}

.guarantee-seal {
    max-width: 500px;
    height: auto;
    /* Efeito de Float */
    animation: float-light 4s ease-in-out infinite;
}

.guarantee-text h2 {
    text-align: left;
    font-size: 2.2em;
    margin-bottom: 15px;
}

.guarantee-text p {
    text-align: left;
    margin-bottom: 10px;
    color: var(--color-gray);
}

.guarantee-text p strong {
    color: var(--color-neon-light);
}

/* 4. SECTION FAQ */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
}

.faq-section h2 {
    margin-bottom: 40px;
}

.faq-item {
    background-color: var(--color-secondary-dark);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    border-left: 5px solid var(--color-neon-light);
}

.faq-question {
    font-size: 1.2em;
    color: var(--color-white);
    cursor: pointer;
    margin-bottom: 10px;
}

.faq-answer {
    color:  #e5ffa4;
    padding-left: 10px;
}

/* 5. FOOTER */
footer {
    background-color: #0d1212;
    padding: 40px 5%;
    text-align: center;
    border-top: 2px solid var(--color-neon-dark);
}

.footer-links {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    text-align: left;
    margin-bottom: 30px;
}

.footer-links h4 {
    color: var(--color-neon-light);
    margin-bottom: 15px;
}

.footer-links a {
    display: block;
    color: var(--color-gray);
    margin-bottom: 5px;
    font-size: 0.9em;
    text-decoration: underline;o
}

.payment-methods img {
    max-width: 250px;
    height: auto;
}

.copyright {
    font-size: 0.8em;
    color: var(--color-gray);
    padding-top: 20px;
    border-top: 1px solid var(--color-secondary-dark);
}


/* =======================================
   RESPONSIVIDADE (MOBILE FIRST, depois Desktop)
   ======================================= */

/* Para telas menores que 768px (Móvel/Tablet) */
@media (max-width: 768px) {
    
    .hero-section h1 {
        font-size: 2.5em;
    }

    .plans-container {
        flex-direction: column; /* Pilha os cards */
        align-items: center;
    }
    
    .plan-card {
        width: 100%; /* Ocupa a largura total na tela pequena */
        max-width: 350px;
    }

    /* Ajuste para a seção de garantia */
    .guarantee-content {
        flex-direction: column;
        gap: 30px;
    }

    .guarantee-seal {
        max-width: 450px;
    }

    .guarantee-text h2 {
        text-align: center;
    }
    
    .guarantee-text p {
        text-align: center;
    }
    
    .benefit-icons {
        justify-content: center;
    }
    
    .footer-links {
        justify-content: flex-start;
        flex-direction: column;
    }
    
    .footer-links > div {
        text-align: center;
    }
}


/* --------------------------------------------------------------------------------------  */



/* Contêiner flutuante geral */
.float-image {
  position: fixed;
  top: 45%;
  left: 19%;
  transform: translate(-50%, -10%);
  z-index: 9999;
  animation: float 6s ease-in-out infinite;
  pointer-events: none; /* não atrapalha cliques embaixo */
}

/* Contêiner flutuante geral */
.float-image2 {
  position: fixed;
  top: -22%;
  left: 93%;
  transform: translate(-50%, -10%);
  z-index: 9999;
  animation: float 3s ease-in-out infinite;
  pointer-events: none; /* não atrapalha cliques embaixo */
}

/* Contêiner flutuante geral */
.float-image3 {
  position: fixed;
  top: 22%;
  left: 95%;
  transform: translate(-50%, -10%);
  z-index: 9999;
  animation: float 6s ease-in-out infinite;
  pointer-events: none; /* não atrapalha cliques embaixo */
}

/* Contêiner flutuante geral */
.float-image4 {
  position: fixed;
  top: 48%;
  left: 90%;
  transform: translate(-50%, -10%);
  z-index: 9999;
  animation: float 6s ease-in-out infinite;
  pointer-events: none; /* não atrapalha cliques embaixo */
}


/* Esconde por padrão no mobile */
.float-desktop {
  display: block;
}
.float-mobile {
  display: none;
}

/* Animação de flutuação (já existente no arquivo) */
@keyframes float {
  0%, 100% {
    transform: translate(-50%, -10%);
  }
  50% {
    transform: translate(-50%, -15%);
  }
}

/* Media query para mostrar a imagem mobile apenas em telas menores */
@media (max-width: 768px) {
  .float-desktop {
    display: none;
  }
  .float-mobile {
    display: block;
  }
}



/**/

/* Estado padrão com fade ativo */
.float-image,
.float-image2,
.float-image3 {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

/* Classe oculta com fade-out */
.float-hidden {
  opacity: 0;
  visibility: hidden;
}


/*   brilho btn top */

/* Efeito Brilho Diagonal (Shine) */

/* 1. Define a animação da luz */
@keyframes diagonal-shine {
    0% {
        /* Posição inicial: fora da esquerda superior */
        transform: translate(-100%, -100%) rotate(45deg);
    }
    10% {
        /* A luz passa rapidamente */
        transform: translate(100%, 100%) rotate(45deg);
    }
    100% {
        /* Posição final: fica inativo até o próximo ciclo */
        transform: translate(100%, 100%) rotate(45deg);
    }
}

/* 2. Aplica a animação no botão */
.shine-button::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 250%; /* Largura maior que o botão para cobrir a diagonal */
    height: 100%;
    
    /* Cria a luz: gradiente branco transparente */
    background: rgb(255, 255, 255); 
    /* Adiciona a animação: nome, duração de 5s, inifinito */
    animation: diagonal-shine 5s linear infinite; 
    
    /* Configura o estado inicial da luz antes de começar a animação */
    transform: translate(-100%, -100%) rotate(45deg);
    
    /* Garante que o texto fique acima do brilho */
    z-index: 1;
}

/* Chrome, Edge, Safari */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #e6fffc; /* tom claro de fundo */
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0ab1a3, #00FFEA);
  border-radius: 8px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #00FFEA, #0ab1a3);
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #0ab1a3 #e6fffc;
}

