html {
    scroll-behavior: smooth;
}

/*text*/

.neonText {
    color: #fff;
    text-shadow:
        0 0 5px #00aaff,
        0 0 25px #00aaff,
        0 0 12px #00aaff,
        0 0 32px #0fa,
        0 0 102px #0fa,
        0 0 102px #0fa,
        0 0 202px #0fa,
        0 0 200px #0fa;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #111;
    padding: 0.75rem 1rem;
    z-index: 9999;
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff !important;
}

.navbar-brand span {
    color: #00aaff;
}

.nav-link {
    color: #fff !important;
    font-weight: 500;
    margin-right: 1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #00aaff !important;
}

.btn-premium {
    color: #fff;
    background: rgba(30, 68, 220, 1);
    box-shadow: 0 0 0 0 rgba(30, 68, 220, 1);
    animation: pulse-blue 2s infinite;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 16px;
    border-radius: 6px;
    -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
    animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.btn-premium:hover {
    background-color: #162ecc;
    color: #fff;
}

/* CRONÔMETRO */
.countdown {
    display: flex;
    gap: 8px;
    margin-right: 10px;
}

.time-box {
    background: #fff;
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-weight: bold;
    border-radius: 8px;
    width: 60px;
    height: 50px;
    /* altura proporcional ao botão */
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.time-box span {
    font-size: 1.1rem;
    line-height: 1;
}

.time-box small {
    font-size: 0.8rem;
    font-weight: normal;
    margin-top: 2px;
    opacity: 0.7;
}

@-webkit-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
    }
}

@-moz-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
    }
}

@-ms-keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
    }
}

@keyframes pulse {
    to {
        box-shadow: 0 0 0 25px rgba(232, 76, 61, 0);
    }
}

/* Hero Section */
.hero {
    position: relative;
    background: url("../images/bg_home.webp") no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    /* overlay 80% */
}

.hero .container {
    position: relative;
    z-index: 1;
}

.hero h6 {
    color: #00aaff;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero h1 span {
    color: #00aaff;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #ddd;
}

.btn-cta {
    background-color: #1a39ff;
    color: #fff;
    font-size: 1.1rem;
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.btn-cta:hover {
    background-color: #162ecc;
    color: #fff;
}

/* Responsividade */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: 1.8rem;
    }
}

/* Estilo do cursor no typing */
.typing::after {
    content: "|";
    animation: blink 0.7s infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

.course-section {
    background: #111;
    padding: 4rem 2rem;
    color: #fff;
    text-align: center;
}

.course-section h2 {
    font-weight: 700;
    margin-bottom: 3rem;
}

.course-card {
    background: #1a1a1a;
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: transform 0.3s, background 0.3s, border 0.3s, box-shadow 0.3s;
    height: 100%;
    border: 2px solid transparent;
}

.course-card:hover {
    transform: translateY(-7px);
    background: #111;
    border: 2px solid #00aaff;
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
}

.course-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #00aaff;
    transition: color 0.3s;
}

.course-card:hover i {
    color: #33cfff;
}

.course-card h5 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.course-card p {
    color: #ccc;
    font-size: 0.95rem;
}


.testimonials {
    background: #000;
    color: #fff;
    padding: 4rem 2rem;
    text-align: center;
}

.testimonials h2 {
    font-weight: 700;
    margin-bottom: 3rem;
}

.testimonial-card {
    background: #111;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 15px rgba(0, 170, 255, 0.5);
}

.testimonial-video {
    width: 100%;
    height: 200px;
    border: none;
}

.testimonial-body {
    padding: 1.5rem;
}

.testimonial-body h5 {
    margin: 0.5rem 0;
    font-weight: 700;
}

.testimonial-body p {
    font-size: 0.95rem;
    color: #ccc;
}

.btn-custom {
    background: #007bff;
    color: #fff;
    font-weight: 700;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    margin-top: 3rem;
    transition: background 0.3s, transform 0.2s;
    text-transform: uppercase;
}

.btn-custom:hover {
    background: #0056b3;
    transform: scale(1.05);
}

.contadores {
    background-color: #111;
    /* fundo escuro */
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.contadores .container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.contador .numero {
    font-size: 2.5rem;
    font-weight: bold;
    color: #00CFFF;
    /* azul destaque */
    display: block;
}

.contador p {
    margin-top: 8px;
    font-size: 1rem;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .contadores .container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contadores .container {
        grid-template-columns: 1fr;
    }
}


.promocao {
    background: #000;
    color: #fff;
    padding: 60px 20px;
}

.promocao .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    gap: 40px;
    flex-wrap: wrap;
}

.promocao-esquerda {
    flex: 1;
    text-align: center;
}

.promocao-esquerda h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.promocao-esquerda h2 span {
    color: #1a39ff;
    font-weight: bold;
}

.promocao-esquerda h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.promocao-esquerda img {
    max-width: 250px;
    margin-top: 20px;
}

.promocao-direita {
    flex: 1;
    text-align: center;
}

.promocao-direita .aviso {
    font-size: 1rem;
    margin-bottom: 10px;
    font-weight: bold;
}

.cronometro {
    font-size: 1.5rem;
    font-weight: bold;
    margin: 20px 0;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.cronometro span {
    background: #fff;
    color: #000;
    padding: 10px 15px;
    border-radius: 6px;
    min-width: 60px;
    display: inline-block;
}

.preco-antigo {
    text-decoration: line-through;
    color: #aaa;
    font-size: 1.2rem;
    margin-top: 10px;
}

.desconto {
    color: #ff4040;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 10px 0;
}

.preco-atual {
    font-size: 1.8rem;
    margin: 10px 0;
}

.preco-atual strong {
    color: #ff9933;
}

.parcelamento {
    font-size: 1rem;
    margin-bottom: 20px;
}

.btn-comprar {
    display: inline-block;
    background: linear-gradient(90deg, #ff4040, #ff9933);
    color: #fff;
    font-size: 1.2rem;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: 0.3s ease;
}

.btn-comprar:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 64, 64, 0.6);
}

.limite {
    font-size: 0.9rem;
    margin-top: 15px;
    color: #bbb;
}

.pagamentos {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

/* .pagamentos img {
  max-height: 30px;
} */
@media (max-width: 992px) {
    .promocao .container {
        flex-direction: column;
        text-align: center;
    }
}


.footer {
    background: #111;
    color: #fff;
    padding: 50px 0 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    /* centraliza */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #ff4141;
}

.footer-logo,
.footer-product {
    max-width: 100px;
    margin-top: 10px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 15px;
    margin-top: 30px;
}

.footer-bottom p {
    margin: 5px 0;
}

.social-icons {
    margin-top: 10px;
}

.social-icons a {
    color: #fff;
    margin: 0 8px;
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-icons a:hover {
    color: #ff4141;
}

/* Responsividade */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

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

.whatsapp {
    position: fixed;
    top: 90%;
    right: 1%;
    padding: 10px;
    z-index: 10000000;
}