* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {

    background: #000;
    color: #00f349;
    line-height: 1.6;
    overflow-x: hidden;

}

section {

    padding: 90px 10%;

}

.hero {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 70px;
    min-height: 100vh;

}

.hero-left {

    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;

}

.hero-right {

    flex: 1;

}

.foto {

    width: 420px;
    height: 520px;

    object-fit: cover;

    border-radius: 25px;

    border: 3px solid rgba(255, 255, 255, .12);

    box-shadow:
        0 0 40px rgba(0, 255, 120, .25),
        0 0 80px rgba(0, 255, 120, .08);

    transition: .4s;

}

.foto:hover {

    transform: scale(1.02);

}

h1 {

    font-size: 58px;

    margin-bottom: 25px;

    color: #0fb300;

    line-height: 1.1;

}

h2 {

    font-size: 42px;

    color: #00ff88;

    text-align: center;

    margin-bottom: 45px;

}

h3 {

    color: #fff;

    margin-bottom: 12px;

    font-size: 23px;

}

.subtitulo {

    font-size: 22px;

    color: #cfcfcf;

    margin-bottom: 35px;

}

.botao {

    display: inline-block;

    padding: 18px 45px;

    background: #00c853;

    color: white;

    text-decoration: none;

    font-size: 18px;

    font-weight: bold;

    border-radius: 10px;

    transition: .3s;

    box-shadow: 0 0 20px rgba(0, 255, 120, .2);

}

.botao:hover {

    background: #00e676;

    transform: translateY(-5px);

    box-shadow: 0 0 35px rgba(0, 255, 120, .45);

}

.cards {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));

    gap: 28px;

}

.grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

    gap: 28px;

}

.card,
.item,
.bonus-card {

    background: rgba(20, 20, 20, .75);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 20px;

    padding: 30px;

    transition: .35s;

}

.card:hover,
.item:hover,
.bonus-card:hover {

    transform: translateY(-10px);

    border-color: #00ff88;

    box-shadow: 0 0 30px rgba(0, 255, 120, .25);

}

.card p,
.item p,
.bonus-card p {

    color: #cfcfcf;

    font-size: 17px;

}

.autoridade {

    max-width: 950px;

    margin: auto;

    text-align: center;

}

.autoridade p {

    color: #d6d6d6;

    font-size: 20px;

    line-height: 1.8;

}

.depoimento {

    background: rgba(20, 20, 20, .75);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 20px;

    padding: 15px;

    display: flex;

    justify-content: center;

    align-items: center;

    transition: .35s;

}

.depoimento:hover {

    transform: translateY(-10px);

    border-color: #00ff88;

    box-shadow: 0 0 30px rgba(0, 255, 120, .25);

}

.depoimento img {

    width: 100%;

    max-width: 320px;

    border-radius: 15px;

    display: block;

}

.oferta {

    text-align: center;

    background: rgba(20, 20, 20, .75);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 20px;

    padding: 70px 40px;

}

.oferta h1 {

    font-size: 70px;

    color: #00ff88;

    margin-bottom: 20px;

}

.oferta p {

    color: #d6d6d6;

    font-size: 20px;

    margin-bottom: 35px;

}

.faq {

    max-width: 900px;

    margin: auto;

}

details {

    background: rgba(20, 20, 20, .75);

    backdrop-filter: blur(12px);

    border: 1px solid rgba(255, 255, 255, .08);

    border-radius: 15px;

    margin-bottom: 18px;

    padding: 20px;

    transition: .3s;

}

details:hover {

    border-color: #00ff88;

}

summary {

    cursor: pointer;

    font-size: 20px;

    font-weight: bold;

    color: white;

}

details p {

    color: #d6d6d6;

    margin-top: 15px;

}

footer {

    background: #050505;

    border-top: 1px solid #222;

    padding: 70px 10%;

    text-align: center;

}

footer h2 {

    color: #00ff88;

    margin-bottom: 15px;

    font-size: 30px;

}

footer p {

    color: #bfbfbf;

    font-size: 18px;

    margin: 8px 0;

}

footer a {

    color: #00ff88;

    text-decoration: none;

}

footer a:hover {

    text-decoration: underline;

}

::-webkit-scrollbar {

    width: 10px;

}

::-webkit-scrollbar-track {

    background: #0d0d0d;

}

::-webkit-scrollbar-thumb {

    background: #00c853;

    border-radius: 20px;

}

::-webkit-scrollbar-thumb:hover {

    background: #00ff88;

}

@media(max-width:900px) {

    .hero {

        flex-direction: column;

        text-align: center;

        gap: 40px;

    }

    .hero-left,
    .hero-right {

        width: 100%;

    }

    .foto {
        width: 250px;
        height: 250px;
        object-fit: cover;
        object-position: center;
        border-radius: 20px;
        display: block;
        margin: 0 auto;
    }

    h1 {

        font-size: 42px;

    }

    h2 {

        font-size: 34px;

    }

    .subtitulo {

        font-size: 20px;

    }

    .cards,
    .grid {

        grid-template-columns: 1fr;

    }

    .oferta h1 {

        font-size: 50px;

    }

}

.imagem-card {
    display: flex;
    justify-content: center;
    align-items: center;
}

.imagem-card img {
    width: 300px;
    border-radius: 20px;
    box-shadow: 0 0 25px rgba(0, 255, 120, .3);
}

.contador {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.tempo-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tempo-box span {
    width: 75px;
    height: 75px;
    background: #111;
    border: 3px solid #00bfff;
    border-radius: 10px;

    display: flex;
    justify-content: center;
    align-items: center;

    color: #00bfff;
    font-size: 40px;
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;

    box-shadow: 0 0 15px rgba(0, 191, 255, 0.6);
}

.tempo-box small {
    margin-top: 8px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: bold;
}

.separador {
    color: #00bfff;
    font-size: 45px;
    font-weight: bold;
    margin-top: -18px;
}

@media (max-width: 700px) {

    .contador {
        gap: 8px;
    }

    .tempo-box span {
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .tempo-box small {
        font-size: 10px;
    }

    .separador {
        font-size: 35px;
    }

}

.cta-hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.imagem-hero {
    width: 100%;
    max-width: 350px;
    border-radius: 20px;
    margin-bottom: 25px;
}

.cta-hero .botao {
    width: 220px;
    text-align: center;
}

.imagem-oferta {
    display: block;
    width: 100%;
    max-width: 350px;
    margin: 0 auto 25px;
    border-radius: 15px;
}

h1 {
    color: #1eff00;
    text-shadow: none;
}

h2 {
    color: #1eff00;
    text-shadow: none;
}

.texto-extra {
    margin-top: 18px;
    text-align: center;
    line-height: 1.6;
}

.preco-antigo {
    color: #999;
    text-decoration: line-through;
    font-size: 18px;
}

.preco-atual {
    color: #1eff00;
    font-size: 26px;
    font-weight: bold;
}