  * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        body {
            background: #f2f4f7;
            display: flex;
            justify-content: center;
            padding: 30px 10px;
            flex-direction: column;
            align-items: center;
        }

        .container {
            max-width: 420px;
            background: #ffffff;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .header {
           
            color: #fff;
            padding: 25px 20px;
            text-align: left;
        }

        .header h1 {
            font-size: 22px;
            font-weight: bold;
        }

        .hero {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 20px;
        }

        .hero img {
            width: 110px;
            border-radius: 10px;
        }

        .hero h2 {
            font-size: 18px;
            font-weight: bold;
            line-height: 1.3;
        }

        .section {
            padding: 20px;
            border-top: 1px solid #eee;
        }

        .section p {
            font-size: 15px;
            line-height: 1.5;
            color: #333;
            margin-bottom: 12px;
        }

        ul {
            padding-left: 18px;
            margin-bottom: 15px;
        }

        ul li {
            font-size: 14.5px;
            margin-bottom: 8px;
            color: #333;
        }

        .bold {
            font-weight: bold;
        }

        .problem {
            background: #f9fafb;
        }

        .checklist li {
            list-style: none;
            display: flex;
            gap: 8px;
        }

        .checklist li::before {
            content: "✔";
            color: #16a34a;
            font-weight: bold;
        }

        .highlight {
            font-size: 16px;
            font-weight: bold;
            text-align: center;
            margin-top: 10px;
        }

        .cta {
           
            
            text-align: center;
            padding: 20px;
        }

        .cta p {
            font-size: 14.5px;
            line-height: 1.4;
        }

        @media (max-width: 360px) {
            .hero {
                flex-direction: column;
                text-align: center;
            }

            .hero img {
                width: 130px;
            } 
         }

              /* RESET */
        .wrap-strategy * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        /* CONTAINER */
        .wrap-strategy {
            max-width: 420px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 18px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.12);
            overflow: hidden;
        }

        /* SEÇÕES */
        .block-strategy {
            padding: 28px 22px;
            border-bottom: 1px solid #eee;
        }

        /* TÍTULOS */
        .title-main-strategy {
            font-size: 24px;
            font-weight: 800;
            text-transform: uppercase;
            line-height: 1.3;
            margin-bottom: 12px;
            color: #0b1f44;
        }

        .title-sub-strategy {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 18px;
            color: #0b1f44;
        }

        /* TEXTO */
        .text-strategy {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 14px;
        }

        .text-strong-strategy {
            font-weight: 700;
        }

        /* LISTA SIMPLES */
        .list-basic-strategy {
            margin: 16px 0;
            padding-left: 18px;
        }

        .list-basic-strategy li {
            font-size: 16px;
            margin-bottom: 10px;
            color: #333;
        }

        /* BLOCO DE DESTAQUE */
        .block-highlight-strategy {
            background: #f8fafc;
            text-align: center;
        }

        .block-highlight-strategy .text-strategy {
            font-size: 17px;
        }

        /* CHECKLIST */
        .list-check-strategy {
            list-style: none;
            padding-left: 0;
            margin-top: 16px;
        }

        .list-check-strategy li {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 16px;
        }

        .list-check-strategy li::before {
            content: "✔";
            color: #16a34a;
            font-weight: bold;
        }

        /* GRID */
        .grid-strategy {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 12px;
        }

        /* RESPONSIVO */
        @media (max-width: 360px) {
            .title-main-strategy { font-size: 22px; }
            .title-sub-strategy { font-size: 18px; }
            .text-strategy,
            .list-basic-strategy li,
            .list-check-strategy li {
                font-size: 15px;
            }
        }

          /* RESET ISOLADO */
        .audience-wrap * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        /* CONTAINER */
        .audience-wrap {
            max-width: 420px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 18px;
            box-shadow: 0 12px 35px rgba(0,0,0,0.12);
            overflow: hidden;
        }

        /* SEÇÃO */
        .audience-section {
            padding: 28px 22px;
            border-bottom: 1px solid #eee;
        }

        /* TÍTULOS */
        .audience-title {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 16px;
            color: #0b1f44;
        }

        /* TEXTO */
        .audience-text {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 14px;
        }

        .audience-bold {
            font-weight: 700;
        }

        /* LISTA COM X */
        .audience-list-x {
            list-style: none;
            margin-top: 14px;
        }

        .audience-list-x li {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 16px;
        }

        .audience-list-x li::before {
            content: "✖";
            color: #dc2626;
            font-weight: bold;
        }

        /* LISTA COM CHECK */
        .audience-list-check {
            list-style: none;
            margin-top: 14px;
        }

        .audience-list-check li {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 16px;
        }

        .audience-list-check li::before {
            content: "✔";
            color: #16a34a;
            font-weight: bold;
        }

        /* BLOCO CINZA */
        .audience-muted {
            background: #f8fafc;
        }

        /* ACOMPANHAMENTO */
        .support-list {
            list-style: none;
            margin-top: 16px;
        }

        .support-list li {
            display: flex;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 16px;
        }

        .support-list li::before {
            content: "📌";
        }

        /* PREÇO */
        .price-box {
            background: #f8fafc;
            text-align: center;
        }

        .price-value {
            display: inline-block;
            background: #facc15;
            color: #000;
            font-size: 24px;
            font-weight: 800;
            padding: 10px 22px;
            border-radius: 10px;
            margin: 14px 0;
        }

        .price-note {
            font-size: 15px;
            line-height: 1.6;
            color: #333;
        }

        /* RESPONSIVO */
        @media (max-width: 360px) {
            .audience-title { font-size: 20px; }
            .audience-text,
            .audience-list-x li,
            .audience-list-check li,
            .support-list li {
                font-size: 15px;
            }
        }

        
   
        /* RESET ISOLADO */
        .assist-wrap * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: Arial, Helvetica, sans-serif;
        }

        /* CONTAINER */
        .assist-wrap {
            max-width: 420px;
            margin: 0 auto;
            background: #ffffff;
            border-radius: 18px;
            box-shadow: 0 14px 40px rgba(0,0,0,0.12);
            overflow: hidden;
        }

        /* SEÇÃO */
        .assist-section {
            padding: 26px 22px;
            border-bottom: 1px solid #eee;
        }

        /* TÍTULOS */
        .assist-title {
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 16px;
            color: #0b1f44;
        }

        /* TEXTO */
        .assist-text {
            font-size: 16px;
            line-height: 1.6;
            color: #333;
            margin-bottom: 14px;
        }

        .assist-bold {
            font-weight: 700;
        }

        /* LISTA SIMPLES */
        .assist-list {
            padding-left: 18px;
            margin-bottom: 14px;
        }

        .assist-list li {
            font-size: 16px;
            margin-bottom: 10px;
        }

        /* LISTA CHECK */
        .assist-check {
            list-style: none;
            margin-top: 14px;
        }

        .assist-check li {
            display: flex;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 16px;
        }

        .assist-check li::before {
            content: "✔";
            color: #16a34a;
            font-weight: bold;
        }

        /* BLOCO CINZA */
        .assist-muted {
            background: #f8fafc;
        }

        /* PREÇO */
        .assist-price {
            font-size: 28px;
            font-weight: 900;
            color: #0b1f44;
            text-align: center;
            margin: 12px 0;
        }

        /* CAIXA DE DESCONTO */
        .assist-offer {
            border: 2px solid #e5c07b;
            padding: 16px;
            border-radius: 10px;
            text-align: center;
            background: #fffdf5;
            margin-top: 14px;
        }

        .assist-offer strong {
            color: #166534;
            font-size: 26px;
        }

        /* RESPONSIVO */
        @media (max-width: 360px) {
            .assist-title { font-size: 20px; }
            .assist-text,
            .assist-list li,
            .assist-check li {
                font-size: 15px;
            }
        }

/* CONTAINER PRINCIPAL */
.pagina-cta {
    width: 100%;
    max-width: 420px;
    padding: 40px 20px 60px;
    text-align: center;
}

/* TEXTO PRINCIPAL */
.titulo-cta {
    font-size: 26px;
    line-height: 1.4;
    color: #1f2d3d;
    margin-bottom: 40px;
}

.titulo-cta strong {
    font-weight: 700;
}

/* BOTÃO */
.botao-cta {
    width: 100%;
    max-width: 320px;
    padding: 16px 20px;
    background: linear-gradient(180deg, #4CAF50, #2e7d32);
    color: #ffffff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(0, 128, 0, 0.3);
    transition: transform 0.2s, box-shadow 0.2s;
}

.botao-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 128, 0, 0.4);
}

/* SETA */
.seta-cta {
    margin-top: 25px;
    font-size: 32px;
    color: #6c8ea4;
    animation: descer 1.2s infinite ease-in-out;
    margin-bottom: 5%;
}

/* ANIMAÇÃO DA SETA */
@keyframes descer {
    0% {
        transform: translateY(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(10px);
        opacity: 1;
    }
    100% {
        transform: translateY(0);
        opacity: 0.6;
    }
}

/* RESPONSIVO */
@media (max-width: 480px) {
    .titulo-cta {
        font-size: 22px;
    }

    .botao-cta {
        font-size: 15px;
    }
}
   