/* ================= RESET ================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ================= BASE ================= */
body {
    font-family: Arial, sans-serif;
    background: #F8F9FA;
    color: #222;
    line-height: 1.5;
}

/* ================= CONTAINER ================= */
section {
    max-width: 500px;
    margin: 0 auto;
    padding: 25px 15px;
}

/* ================= HEADLINES ================= */
h1, h2, h3 {
    color: #1E4D2B;
    margin-bottom: 10px;
}

.headline {
    font-size: 28px;
    font-weight: bold;
    line-height: 1.2;
}

/* ================= TEXTO ================= */
p {
    margin-bottom: 10px;
}

/* ================= BOTÕES ================= */
button {
    width: 100%;
    padding: 16px;
    background: #FF8C00;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    opacity: 0.9;
}

/* ================= HERO ================= */
#hero {
    background: #fff;
    text-align: center;
}

#hero img {
    width: 100%;
    max-width: 280px;
    margin-top: 15px;
}

/* ================= INIMIGO ================= */
#inimigo {
    background: #fff;
    margin-top: 10px;
}

#inimigo ul {
    padding-left: 20px;
}

/* ================= MECANISMO ================= */
#mecanismo {
    background: #0B2545;
    color: #fff;
    margin-top: 10px;
    border-radius: 12px;
    padding: 30px 20px;
}

#mecanismo h2 {
    color: #fff;
}

#mecanismo img {
    width: 100%;
    max-width: 240px;
    margin: 20px auto;
    display: block;
}

/* ================= BENEFÍCIOS ================= */
#beneficios {
    background: #fff;
    margin-top: 10px;
}

.checklist {
    list-style: none;
}

.checklist li {
    margin-bottom: 10px;
    font-size: 16px;
}

/* ================= OFERTA ================= */
#oferta {
    margin-top: 30px;
}

#oferta h2 {
    text-align: center;
    margin-bottom: 25px;
}

/* GRID */
.oferta-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

/* DESKTOP */
@media (min-width: 768px) {
    .oferta-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CARD */
.card {
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e5e5e5;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    text-align: center;
}

/* IMAGEM */
.card img {
    width: 150px;
    margin-bottom: 10px;
}

/* TITULO */
.card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* TAG */
.tag {
    background: #FF8C00;
    color: #fff;
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 12px;
    margin-bottom: 10px;
}

/* PREÇO PRINCIPAL */
.parcelado {
    font-size: 26px;
    font-weight: bold;
    color: #FF8C00;
}

/* PREÇO SECUNDÁRIO */
.total {
    font-size: 13px;
    color: #777;
    margin-bottom: 10px;
}

/* BOTÃO */
.card button {
    margin-top: 15px;
}

/* DESTAQUE */
.destaque {
    border: 3px solid #FF8C00;
    transform: scale(1.04);
}

/* ================= GARANTIA ================= */
#garantia {
    margin-top: 20px;
}

.garantia-box {
    background: #fff;
    border-radius: 12px;
    padding: 20px;

    display: flex;
    align-items: center;
    gap: 15px;
}

.garantia-box img {
    width: 80px;
}

/* ================= FAQ ================= */
#faq {
    background: #fff;
    margin-top: 10px;
}

#faq h3 {
    margin-top: 15px;
}

/* ================= CTA FINAL ================= */
#cta {
    background: #fff;
    text-align: center;
    margin-top: 10px;
}

.seguranca {
    margin-top: 15px;
}

.seguranca img {
    width: 120px;
    margin: 5px;
}

/* ================= RESPONSIVO GERAL ================= */
@media (min-width: 768px) {

    section {
        max-width: 900px;
    }

    #hero {
        display: flex;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        gap: 30px;
    }

    #hero div {
        width: 50%;
    }

}/* ================= IMPACTO VISUAL ================= */

/* HEADLINE PRINCIPAL */
.headline {
    font-size: 34px;
    font-weight: 900;
}

/* SUBTEXTO HERO */
#hero p {
    font-size: 18px;
}

/* TÍTULOS DAS SEÇÕES */
h2 {
    font-size: 24px;
    font-weight: 800;
}

/* BENEFÍCIOS */
.checklist li {
    font-size: 18px;
}

/* PREÇO (MAIS IMPORTANTE DA PÁGINA) */
.parcelado {
    font-size: 30px;
    font-weight: 900;
}

/* PREÇO MENOR */
.total {
    font-size: 15px;
}

/* BOTÕES MAIS CHAMATIVOS */
button {
    font-size: 18px;
    padding: 18px;
}

/* CARD TÍTULO */
.card h3 {
    font-size: 20px;
    font-weight: bold;
}

/* GARANTIA */
#garantia h2 {
    font-size: 22px;
}

/* FAQ */
#faq h3 {
    font-size: 18px;
}

/* ================= MOBILE AINDA MAIS FORTE ================= */
@media (max-width: 480px) {

    .headline {
        font-size: 30px;
    }

    .parcelado {
        font-size: 28px;
    }

}/* ================= RESPIRO BLOCO AZUL ================= */
#mecanismo {
    padding-top: 40px;
    padding-bottom: 40px;
}

/* ================= HIERARQUIA DE PREÇOS ================= */
.parcelado {
    font-size: 28px;
    font-weight: 900; /* 🔥 extra bold */
    color: #FF8C00;
}

.total {
    font-size: 14px;
    color: #999; /* cinza mais claro */
}

/* ================= SELLOS RODAPÉ ================= */
.seguranca {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.seguranca img {
    max-width: 80px;
    height: auto;
}

/* ================= BOTÃO PULSANTE ================= */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

button {
    animation: pulse 1.8s infinite;
}

/* ================= CHECK VERDE FORTE ================= */
.checklist li {
    font-size: 18px;
    color: #222;
}

/* deixa o check mais forte visualmente */
.checklist li::before {
    content: "✓ ";
    color: #1E4D2B; /* verde mais forte */
    font-weight: bold;
}/* ================= CHECKLIST LIMPO ================= */
.checklist {
    list-style: none; /* remove bullets padrão */
    padding-left: 0;
}

.checklist li {
    margin-bottom: 10px;
    font-size: 18px;
    color: #222;
}

/* garante só os checks visuais */
.checklist li::before {
    content: "✓✓ ";
    color: #1E4D2B;
    font-weight: 900;
}

/* ================= TÍTULO OFERTA ================= */
#oferta h2 {
    font-size: 24px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 25px;
}

/* ================= RODAPÉ (SELLOS) ================= */
.seguranca {
    display: flex;
    justify-content: center; /* centraliza */
    align-items: center;
    gap: 10px;
    margin-top: 20px; /* espaço do botão */
}

.seguranca img {
    max-width: 80px;
    height: auto;
}/* ================= FOTO DE PERFIL DEPOIMENTOS ================= */
.cliente {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* FOTO REDONDA PERFEITA */
.cliente img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover; /* 🔥 não distorce */
}

/* BLOCO TEXTO */
.cliente div {
    display: flex;
    flex-direction: column;
}

/* NOME */
.cliente strong {
    font-size: 14px;
}

/* SELO */
.verificado {
    font-size: 12px;
    color: green;
}/* ================= GARANTIA ================= */
#garantia {
    text-align: center;
}

.garantia-box {
    display: flex;
    flex-direction: column; /* 🔥 centraliza vertical */
    align-items: center;
    text-align: center;
    gap: 15px;
}

/* SELO MAIOR */
.garantia-box img {
    width: 150px;
}

/* TÍTULO FORTE */
#garantia h2 {
    font-size: 28px;
    font-weight: 900;
}

/* DESTAQUE LARANJA */
#garantia strong {
    color: #FF8C00;
}

/* ================= FAQ ================= */
#faq {
    margin-top: 20px;
}

/* TÍTULO CENTRAL */
#faq h2 {
    text-align: center;
    margin-bottom: 20px;
}

/* BOX DAS PERGUNTAS */
.faq-item {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
}

/* PERGUNTA */
.faq-item h3 {
    font-size: 16px;
    margin-bottom: 8px;
}

/* RESPOSTA */
.faq-item p {
    font-size: 14px;
    color: #333;
}/* ================= DEPOIMENTOS ================= */
#depoimentos {
    margin-top: 30px;
}

#depoimentos h2 {
    text-align: center;
    font-weight: 900;
    color: #002244;
    margin-bottom: 25px;
}

/* GRID */
.depoimentos-grid {
    display: grid;
    gap: 20px;
}

/* DESKTOP */
@media (min-width: 768px) {
    .depoimentos-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* CARD */
.depoimento-card {
    background: #fff;
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

/* TOPO CLIENTE */
.topo-cliente {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

/* FOTO */
.topo-cliente img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

/* INFO */
.info {
    display: flex;
    flex-direction: column;
}

/* NOME */
.info strong {
    font-size: 14px;
}

/* VERIFICADO */
.verificado {
    font-size: 12px;
    color: green;
}

/* ESTRELAS */
.stars {
    margin: 8px 0;
    font-size: 18px;
}

/* TEXTO */
.depoimento-card p {
    font-size: 16px;
    color: #444;
    line-height: 1.5;
}/* ================= IMAGENS DOS KITS ================= */
.card img {
    width: 100%;
    height: 210px; /* 🔥 altura padrão */
    object-fit: contain; /* 🔥 não distorce */
}

/* GARANTE ALINHAMENTO DOS TÍTULOS */
.card h3 {
    min-height: 40px; /* 🔥 força mesma linha */
    display: flex;
    align-items: center;
    justify-content: center;
}/* ================= NUTRICIONAL ================= */
#nutricional {
    background: #f9f9f9;
    padding: 30px 15px;
    margin-top: 20px;
}

#nutricional h2 {
    text-align: center;
    font-weight: 900;
    margin-bottom: 20px;
}

/* BOX */
.tabela-box {
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* TÍTULO */
.tabela-box h3 {
    font-size: 14px;
    margin-bottom: 10px;
}

/* TABELA */
table {
    width: 100%;
    border-collapse: collapse;
}

table tr {
    border-bottom: 1px solid #eee;
}

table td {
    padding: 8px;
    font-size: 14px;
}

/* OBS */
.obs {
    font-size: 12px;
    color: #777;
    margin-top: 10px;
}

/* INFO EXTRA */
.info-extra p {
    font-size: 14px;
    margin-bottom: 8px;
}/* ================= BLOCO MECANISMO PREMIUM ================= */
#mecanismo {
    background: #0B2545;
    color: #fff;
    text-align: center;
    padding: 40px 20px;
    border-radius: 12px;
}

/* TÍTULO FORTE */
#mecanismo h2 {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 20px;
}

/* IMAGEM */
#mecanismo img {
    width: 100%;
    max-width: 220px;
    margin: 20px auto;
    display: block;
}

/* DESTAQUE TECNOLOGIA */
.destaque-mecanismo {
    font-size: 20px;
    font-weight: bold;
    color: #FFD700; /* dourado */
    margin-bottom: 15px;
}

/* LISTA PREMIUM */
.mecanismo-lista {
    list-style: none;
    padding: 0;
}

.mecanismo-lista li {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 10px;
    position: relative;
}

/* CHECK VISUAL */
.mecanismo-lista li::before {
    content: "✓ ";
    color: #FFD700;
    font-weight: bold;
}/* TOPO menor */
#topo-banner {
    height: 300px; /* antes 420px */
}

/* HERO mais compacto */
#hero {
    padding: 40px 20px; /* reduz espaço interno */
}

/* TEXTO mais enxuto */
.hero-text h1 {
    font-size: 32px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 15px;
}

/* BOTÃO sobe visualmente */
.hero-text button {
    margin-top: 10px;
}

/* IMAGEM menor */
.hero-img img {
    max-height: 280px;
    object-fit: contain;
}.hero-img img {
    width: 100%;
    height: 220px; /* 🔥 altura padrão */
    object-fit: cover; /* cortar e centralizar */
object-position: center;
border-radius: 10px;
}