html, body, h1, h2, h3, h4, h5, h6, p, li, span, a, button, input, textarea, label, div {
    line-height: 1.6;
}
*
{
    font-family: Arial, Helvetica, sans-serif;
}

body
{
    margin: 0px;
    background-color: rgba(0,12,28,1);
}

a
{

    text-decoration: none;
    width: 40%;

    button
    {
        width: 100%;
        font-size: 20px;
        border-radius: 5px;
        border: none;
        background-color: #2c98ca;
        color: rgb(255, 255, 255);
        font-weight: bold;
        cursor: pointer;
        padding: 15px 20px;
        transition: all 0.3s ease-in-out;
    }
    
    button:hover
    {
        background-color: #12a7dd;
        letter-spacing: 1px;
        box-shadow: 0px -2px 51px 5px rgba(18,179,255,0.32);
        -webkit-box-shadow: 0px -2px 51px 5px rgba(18,179,255,0.32);
        -moz-box-shadow: 0px -2px 51px 5px rgba(18,179,255,0.32);
    }
}


header
{
    width: 100%;
    height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0px 20px;
    box-sizing: border-box;
    background-image: url(../images/banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 29px -11px 59px 61px rgba(0,0,0,0.26) inset;
    -webkit-box-shadow: 29px -11px 59px 61px rgba(0,0,0,0.26) inset;
    -moz-box-shadow: 29px -11px 59px 61px rgba(0,0,0,0.26) inset;

    & #opacidade
    {
        width: 100%;
        height: 70vh;
        background-color: rgba(0, 0, 0, 0.6);
        opacity: 0.8;
    }

    & div
    {
        width: 60%;
        height: 100%;
        min-height: 220px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: absolute;
        z-index: 2;
        background: none;
        margin: auto;

        & h1 {
            color: rgb(255, 255, 255);
            font-size: 65px;
            margin: 0 0 20px 0;
            text-align: center;
        }
        & h2 {
            color: rgb(255, 255, 255);
            font-size: 45px;
            margin: 0 0 10px 0;
            text-align: center;
        }
        & h4 {
            color: rgb(255, 255, 255);
            font-size: 30px;
            margin: 20px 0;
            text-align: center;
        }
    }
}

#bloco1
{
    width: 80%;
    margin: auto;

    & h1
    {
        color: rgb(255, 255, 255);
        text-align: center;
        margin: 40px auto;
        font-size: 40px;
    }

    & p
    {
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 20px;
    }

    & div
    {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin: 40px auto;
        box-sizing: border-box;
        gap: 20px;

        & div
        {
            width: 65%;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: rgb(0, 30, 70);
            box-sizing: border-box;
            padding: 20px;
            border: solid thin rgba(117, 117, 117, 0.432);
            border-radius: 10px;
            height: 160px;

            & p
            {
                color: rgb(255, 255, 255);
                font-size: 18px;
                margin: 0px 0px 20px 0px;
            }

            & .material-symbols-outlined
            {
                font-size: 40px;
                font-weight: bold;
                margin-top: 10px;
                color: rgb(48, 138, 255);
            }
        }
    }

    & .paraQuem
    {
        width: 100%;
        color: white;
        border-top: solid thin rgb(255, 0, 0);
        border-bottom: solid thin rgb(255, 0, 0);
        border-radius: 10px;
        background-color: rgba(255, 0, 0, 0.062);
        box-sizing: border-box;
        padding: 0px 90px 30px 90px;

        & div
        {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;

            & .material-symbols-outlined
            {
                color: rgb(255, 0, 0);
                font-size: 40px;
            }
        }

        & p
        {
            font-weight: normal;
        }
    }

    & #preRequisito
    {
        width: 100%;
        color: white;
        border-top: solid thin rgb(0, 255, 0);
        border-bottom: solid thin rgb(0, 255, 0);
        border-radius: 10px;
        background-color: rgba(0, 255, 0, 0.062);
        box-sizing: border-box;
        padding: 20px;
        margin-top: 80px;

        & div
        {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            
            & div
            {
                display: flex;
                flex-direction: row;
                align-items: center;
                justify-content: flex-start;
                margin: 0px;
                height: 80px;
                padding: 10px 30px;
                background-color: #00fc0021;
                
                & .material-symbols-outlined
                {
                    color: rgb(0, 255, 0);
                    font-size: 30px;
                    margin: 0px;
                }

                & p
                {
                    margin: 0px;
                    text-align: start;
                }
            }

        }

        & h2
        {
            text-align: center;
        }
    }

    & #promessa
    {
        width: 100%;
        color: white;
        border: solid thin rgba(117, 117, 117, 0.432);
        border-radius: 10px;
        background-color: rgb(0, 30, 70);
        box-sizing: border-box;
        padding: 20px;
        margin-top: 80px;
    }
}

#bloco2
{
    width: 80%;
    box-sizing: border-box;
    padding: 40px 0px;
    margin-top: 80px;
    margin: auto;
    margin-top: 40px;

    & .titulo
    {
        margin-bottom: 40px;
        gap: 15px;

        & h1
        {
            color: rgb(255, 255, 255);
            text-align: center;
            margin: auto;
            font-size: 40px;
        }

        & p
        {
            color: rgb(255, 255, 255);
            text-align: center;
            font-size: 18px;
            font-weight: normal;
            margin: auto;
        }
    }


    & div
    {
        width: 100%;
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        box-sizing: border-box;
        gap: 40px;

        & div
        {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            border-radius: 10px;

            & div
            {
                display: flex;
                flex-direction: column;
                justify-content: flex-start;
                align-items: flex-start;
                gap: 1px;

                & p
                {
                    color: rgb(255, 255, 255);
                    font-size: 14px;
                    text-align: start;
                    margin: 0px 0px 10px 0px;
                }

                & h2
                {
                    color: rgb(255, 255, 255);
                    font-size: 18px;
                    text-align: start;
                    margin: 10px 0px 10px 0px;
                }
            }


            & .material-symbols-outlined
            {
                font-size: 40px;
                font-weight: bold;
                margin-top: 10px;
                color: rgb(48, 138, 255);
            }
        }

        & #ultimo
        {
            border: dashed thin rgb(99, 99, 99);
            padding: 10px 20px;

            & .material-symbols-outlined
            {
                color: rgb(99, 99, 99);
            }
        }
    }
}

#bloco3
{
    width: 80%;
    margin: auto;
    box-sizing: border-box;
    padding: 40px 0px;

    & .titulo
    {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 20px;

        & .material-symbols-outlined
        {
            color: rgb(255, 255, 0);
            font-size: 30px;
        }

        & h1
        {
            font-size: 30px;
            color: white;
        }
    }

    & #presente
    {
        width: 100%;
        background-color: rgb(255, 255, 225);
        padding: 10px 20px;
        box-sizing: border-box;
        border-radius: 10px;
    }
}

#bloco4
{
    width: 80%;
    margin: auto;
    margin-bottom: 100px;

    & h1
    {
        color: rgb(255, 255, 255);
        text-align: center;
        margin: 40px auto;
        font-size: 40px;
    }

    & p
    {
        color: rgb(255, 255, 255);
        text-align: center;
        font-size: 20px;
    }

    & div
    {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        margin: 40px auto;
        box-sizing: border-box;
        gap: 20px;

        & div
        {
            width: 65%;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: rgb(0, 30, 70);
            box-sizing: border-box;
            padding: 20px;
            border: solid thin rgba(117, 117, 117, 0.432);
            border-radius: 10px;
            height: 150px;

            & p
            {
                color: rgb(255, 255, 255);
                font-size: 18px;
                margin: 0px 0px 20px 0px;
            }

            & .material-symbols-outlined
            {
                font-size: 40px;
                font-weight: bold;
                margin-top: 10px;
                color: rgb(48, 138, 255);
            }
        }
    }

    & p
    {
        margin-bottom: 50px;
    }

    & .paraQuem
    {
        width: 100%;
        color: white;
        border: solid thin rgb(255, 0, 0);
        border-radius: 10px;
        background-color: rgba(255, 0, 0, 0.178);
        box-sizing: border-box;

        & div
        {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            margin: 20px auto;

            & .material-symbols-outlined
            {
                color: rgb(238, 255, 0);
                font-size: 40px;
            }
        }

        & p
        {
            font-weight: normal;
            margin: 0px;
        }
    }
}



/* --- TELA DE VENDAS --- */
#tela-vendas {
    background: #0a1628;
    padding: 48px 16px 56px 16px;
    width: 80%;
    margin: 40px auto 0 auto;
    border-radius: 10px;
    box-shadow: 0 8px 32px 0 rgba(0,0,0,0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    box-sizing: border-box;
}
.vendas-titulo {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #000a;
}
.vendas-lista {
    list-style: none;
    padding: 0;
    margin: 0 0 0px 0;
    width: 100%;
}
.vendas-lista li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #1a2942;
}
.vendas-lista li:last-child {
    border-bottom: none;
}
.vendas-valor {
    color: #ffe082;
    font-weight: 700;
    font-size: 1.1em;
    margin-left: 12px;
}
.vendas-total {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin: 18px 0 18px 0;
    text-align: center;
}
.vendas-total span {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 900;
    letter-spacing: 1px;
    text-shadow: 0 2px 12px #000a;
    text-decoration: line-through;
}
.vendas-precos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 18px;
    margin-bottom: 10px;
    width: 100%;
}
.vendas-promocional {
    display: flex;
    align-items: center;
    background: #222b36;
    color: #b0b0b0;
    font-size: 1.3rem;
    font-weight: 700;
    padding: 8px 18px;
    border-radius: 12px;
    box-shadow: none;
    margin-right: 8px;
    position: relative;
}
.vendas-chama {
    font-size: 2.2rem;
    margin-right: 8px;
    filter: drop-shadow(0 0 8px #ff9800cc);
}
.vendas-label {
    font-size: 1rem;
    font-weight: 700;
    margin-left: 12px;
    background: #fff2;
    color: #fff;
    padding: 2px 10px;
    border-radius: 8px;
    letter-spacing: 1px;
}
.vendas-parcelado {
    background: linear-gradient(90deg, #42a5f5 60%, #00e5ff 100%);
    color: #fff;
    font-size: 2.1rem;
    font-weight: 900;
    padding: 12px 28px;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 24px #00e5ff55;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}
.vendas-parcela {
    color: #fff;
    font-size: 2.1rem;
    font-weight: 900;
    margin-left: 8px;
}
.vendas-exaluno {
    color: #b0b0b0;
    font-size: 1rem;
    margin: 18px 0 24px 0;
    text-align: center;
}
.vendas-exaluno span {
    color: #b0b0b0;
    font-weight: 700;
}
.vendas-botao {
    display: block;
    width: 100%;
    background: linear-gradient(90deg, #42a5f5 60%, #00e5ff 100%);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 900;
    padding: 20px 0;
    border: none;
    border-radius: 16px;
    text-align: center;
    text-decoration: none;
    margin-top: 8px;
    box-shadow: 0 2px 16px #00e5ff33;
    transition: background 0.3s, box-shadow 0.3s, letter-spacing 0.2s;
    letter-spacing: 1px;
    cursor: pointer;
}
.vendas-botao:hover {
    background: linear-gradient(90deg, #00e5ff 60%, #42a5f5 100%);
    box-shadow: 0 4px 32px #00e5ff77;
    letter-spacing: 2px;
}

/* --- GARANTA SUA VAGA AGORA --- */
#garanta-vaga {
    width: 80%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 40px 0;
    box-sizing: border-box;
    margin: auto;
}
.garanta-box {
    width: 100%;
    background: #012040;
    border-radius: 14px;
    box-shadow: 0px 4px 20px rgba(0,0,0,0.3);
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    box-sizing: border-box;
}
.garanta-titulo {
    color: #fff;
    font-size: 2.5em;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.garanta-aviso {
    color: #B0B0B0;
    font-size: 1.2em;
    margin-bottom: 20px;
}
.garanta-botao {
    width: 100%;
    display: block;
    background: linear-gradient(90deg, #42a5f5 60%, #00e5ff 100%);
    color: #fff;
    font-size: 1.2em;
    font-weight: 900;
    padding: 18px 0;
    border: none;
    border-radius: 10px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 2px 12px #00e5ff33;
    transition: background 0.3s, box-shadow 0.3s, letter-spacing 0.2s;
    letter-spacing: 1px;
    cursor: pointer;
    margin-top: 8px;
}
.garanta-botao:hover {
    background: linear-gradient(90deg, #00e5ff 60%, #42a5f5 100%);
    box-shadow: 0px 6px 20px rgba(0, 172, 255, 0.3);
    letter-spacing: 2px;
}

@media (min-width: 1024px) and (max-width: 1470px) {

    header
    {
        & a
        {
            width: 80%;
        }
    }

    #bloco1 {
        & div {
            & .requisitos
            {
                height: 90px !important;
            }
            & div {
                margin: 20px auto;
                height: 170px !important;

                & p {
                    color: rgb(255, 255, 255);
                    font-size: 14px;
                    margin: 0px 0px 20px 0px;
                }
            }
        }
    }
}

@media (min-width: 460px) and (max-width: 769px) {
    .garanta-box {
        width: 90%;
        padding: 16px 6px;
    }
    .garanta-titulo {
        font-size: 2em;
    }
    .garanta-aviso {
        font-size: 1em;
    }
    .garanta-botao {
        font-size: 1em;
        padding: 14px 0;
    }

    header {
    & div {

        & h1 {
            font-size: 55px;
        }
        
        & h2 {
            color: rgb(255, 255, 255);
            font-size: 35px;
            margin: 0 0 10px 0;
            text-align: center;
        }

        & h4 {
            font-size: 20px;
        }
    }
}

    #bloco4 {
        & div {
            & div {
                
                margin: 20px auto;

                & p {
                    color: rgb(255, 255, 255);
                    font-size: 14px;
                    margin: 0px 0px 20px 0px;
                }
            }
        }
    }

    #bloco1 {
        & div {
            & .requisitos
            {
                height: 100px !important;
            }
            & div {
                margin: 20px auto;
                height: 210px !important;

                & p {
                    color: rgb(255, 255, 255);
                    font-size: 14px;
                    margin: 0px 0px 20px 0px;
                }
            }
        }
    }

    header > div > a
    {
        width: 100%;
    }
}
/* --- TESTE SEM RISCO --- */
#teste-sem-risco {
    width: 100%;
    background: #00182C;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 40px 0;
    box-sizing: border-box;
    border-radius: 10px;

}
.teste-box {
    width: 80%;
    max-width: 500px;
    background: #012040;
    border-radius: 14px;
    box-shadow: 10px 10px 20px rgba(0,0,0,0.3);
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}
.teste-icone {
    color: #4FC3F7;
    font-size: 40px !important;
    margin-bottom: 12px;
    display: block;
}
.teste-titulo {
    color: #fff;
    font-size: 2em;
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.teste-desc {
    color: #b0b0b0;
    font-size: 1.2em;
    margin-bottom: 10px;
}
@media (max-width: 768px) {
    .teste-box {
        width: 90%;
        padding: 18px 8px;
    }
    .teste-icone {
        font-size: 32px !important;
    }
    .teste-titulo {
        font-size: 1.3em;
    }
    .teste-desc {
        font-size: 1em;
    }

    #bloco4 {
        & div {
            & div {
                & p {
                    color: rgb(255, 255, 255);
                    font-size: 14px;
                    margin: 0px 0px 20px 0px;
                }
            }
        }
    }

    #bloco1 {
        & div {
            & div {
                & p {
                    color: rgb(255, 255, 255);
                    font-size: 14px;
                    margin: 0px 0px 20px 0px;
                }
            }
        }
    }

    header > div > a
    {
        width: 100%;
    }

    .paraQuem
    {
        padding: 10px 20px 10px 20px !important;
    }
}
/* --- AUTORIDADE --- */
#autoridade {
    width: 80%;
    background: #00182C;
    padding: 48px 0 48px 0;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    margin: 60px auto;
    border-radius: 10px;
    box-sizing: border-box;
}
.autoridade-container {
    width: 90%;
    max-width: 1100px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 3%;
}
.autoridade-img-col {
    width: 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}
.autoridade-img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 4px 32px #0008;
    object-fit: cover;
}
.autoridade-text-col {
    width: 55%;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding-left: 2%;
    box-sizing: border-box;
}
.autoridade-titulo {
    font-size: 2.5em;
    color: #4FC3F7;
    font-weight: 900;
    margin-bottom: 18px;
    letter-spacing: 2px;
    text-shadow: 0 2px 12px #000a;
}
.autoridade-desc {
    font-size: 1.2em;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 500;
}
.autoridade-paragrafo {
    font-size: 1.2em;
    color: #b0b0b0;
    margin-bottom: 15px;
    font-weight: 400;
}
.autoridade-metodo {
    font-size: 1.2em;
    color: #fff;
    border-left: 4px solid #4FC3F7;
    padding: 16px;
    background: #002b4d;
    border-radius: 8px;
    font-weight: 300;
    margin-top: 8px;
    box-shadow: 0 2px 12px #0003;
}
@media (max-width: 768px) {
    .autoridade-container {
        flex-direction: column;
        gap: 32px;
    }
    .autoridade-img-col, .autoridade-text-col {
        width: 100%;
        padding-left: 0;
    }
    .autoridade-img {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
        display: block;
    }
    .autoridade-text-col {
        align-items: flex-start;
        padding-top: 0;
    }

    #bloco4 {
        & div {
            & div {
                & p {
                    color: rgb(255, 255, 255);
                    font-size: 14px;
                    margin: 0px 0px 20px 0px;
                }
            }
        }
    }

    #bloco1 {
        & div {
            & div {
                & p {
                    color: rgb(255, 255, 255);
                    font-size: 14px;
                    margin: 0px 0px 20px 0px;
                }
            }
        }
    }

    .paraQuem
    {
        padding: 10px 20px 10px 20px !important;
    }
}


@media (min-width: 1921px) {
    body {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    header{
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    #bloco1,
    #bloco2,
    #bloco3,
    #bloco4,
    #tela-vendas,
    #autoridade,
    #teste-sem-risco,
    #garanta-vaga {
        max-width: 1200px;
        margin-left: auto !important;
        margin-right: auto !important;
        width: 100% !important;
        box-sizing: border-box;
    }
    .garanta-box,
    .teste-box,
    .autoridade-container {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* --- Media Query para 420px (mobile grande) --- */
@media (max-width: 426px) {
    body {
        font-size: 15px;
    }
    h1 {
        font-size: 2.0em !important;
    }
    h2 {
        font-size: 1.2em !important;
    }
    h4 {
        font-size: 1.05em !important;
    }
    p, .autoridade-desc, .autoridade-paragrafo, .teste-desc, .garanta-aviso {
        font-size: 1.05em !important;
    }

    #bloco3 {
    & .titulo {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        gap: 20px;
    }
}
    
    header {
        min-height: unset !important;
        height: auto !important;
        padding: 0 !important;
        display: block !important;
        position: relative !important;
        background-size: cover !important;
        background-position: center !important;
        text-align: center !important;

        & a
        {
            width: 100%;
        }
    }
    header #opacidade {
        height: 26.5vh !important;
    }
    header > div:not(#opacidade) {
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 26px 16px 18px 16px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 12px !important;
        background: none !important;
        box-sizing: border-box !important;
    }
    header h1, header h2, header h4 {
        width: 100% !important;
        margin: 0 0 12px 0 !important;
        padding: 0 !important;
        word-break: break-word !important;
        background: none !important;
    }
    header h1 {
        font-size: 2.9em !important;
    }
    header button {
        margin-top: 14px !important;
        z-index: 2 !important;
    }
    #bloco1, #bloco2, #bloco3, #bloco4, #tela-vendas, #autoridade, #teste-sem-risco, #garanta-vaga {
        width: 100% !important;
        margin: 0 0 26px 0 !important;
        padding: 24px 16px 24px 16px !important;
        box-sizing: border-box !important;
        background-clip: padding-box !important;
    }
    #bloco1 > div, #bloco4 > div, .autoridade-container, .vendas-precos {
        display: flex !important;
        flex-direction: column !important;
        gap: 0px !important;
        align-items: center !important;
    }
    .autoridade-img-col, .autoridade-text-col {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    .autoridade-img {
        width: 100% !important;
        max-width: 100vw !important;
        height: auto !important;
        margin: 0 auto 12px auto !important;
        display: block !important;
        border-radius: 10px !important;
    }
    .autoridade-text-col {
        padding: 0 14px !important;
        align-items: flex-start !important;
        text-align: left !important;
    }
    .autoridade-titulo, .vendas-titulo, .garanta-titulo, .teste-titulo {
        font-size: 1.5em !important;
        margin-bottom: 14px !important;
        word-break: break-word !important;
    }
    .autoridade-metodo {
        font-size: 1.1em !important;
        padding-left: 12px !important;
        border-left-width: 2px !important;
        margin-bottom: 14px !important;
    }
    .vendas-lista {
        width: 100% !important;
        padding: 0 !important;
    }

    .vendas-valor {
        font-size: 1.1em !important;
        margin-left: 0px !important;
    }

    .vendas-lista li {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        font-size: 1.05em !important;
        margin-bottom: 16px !important;
        padding: 8px 0 !important;
        word-break: break-word !important;
    }
    .vendas-total span {
        font-size: 1.4em !important;
        font-weight: 700 !important;
        margin-left: 0px !important;
    }
    .vendas-chama {
        font-size: 1.3em !important;
        margin-right: 6px !important;
    }
    .vendas-promocional {
        font-size: 1.3em !important;
        padding: 10px 18px !important;
        border-radius: 12px !important;
    }
    .vendas-parcelado {
        font-size: 1.2em !important;
        padding: 8px 12px !important;
        border-radius: 12px !important;
        border-width: 1px !important;
        gap: 6px !important;
    }
    .vendas-parcela {
        font-size: 2em !important;
        font-weight: 700 !important;
        margin-left: 2px !important;
    }
    .vendas-botao, .garanta-botao, button {
        width: 100% !important;
        padding: 16px 0 !important;
        font-size: 1.15em !important;
        margin: 14px 0 0 0 !important;
        word-break: break-word !important;
    }
    .garanta-box, .teste-box, .content {
        width: 100% !important;
        padding: 20px 14px !important;
        margin: 0 0 26px 0 !important;
        box-sizing: border-box !important;
    }
    .material-symbols-outlined {
        font-size: 32px !important;
        margin-bottom: 10px !important;
    }
    html, body {
        overflow-x: hidden !important;
    }
    /* Bloco de Pré-Requisitos */
    #preRequisito {
        padding: 18px 10px !important;
        margin-top: 32px !important;
    }
    #preRequisito > div {
        gap: 12px !important;
    }
    #preRequisito > div > div {
        flex-direction: column !important;
        align-items: center !important;
        height: auto !important;
        padding: 10px 8px !important;
        margin-bottom: 10px !important;
        background-color: #00fc0021 !important;
    }
    #preRequisito .material-symbols-outlined {
        font-size: 24px !important;
        margin-right: 10px !important;
    }
    #preRequisito p {
        font-size: 1.05em !important;
        margin: 0 0 8px 0 !important;
        text-align: center !important;
        word-break: break-word !important;
    }
    #preRequisito h2 {
        font-size: 1.2em !important;
        margin-bottom: 12px !important;
    }

    .paraQuem
    {
        padding: 10px 20px 10px 20px !important;
    }
}
/* --- Media Query para 375px (mobile pequeno) --- */
@media (max-width: 375px) {
    body {
        font-size: 14px;
    }
    h1 {
        font-size: 2.0em !important;
    }
    h2 {
        font-size: 1.15em !important;
    }
    h4 {
        font-size: 1em !important;
    }
    p, .autoridade-desc, .autoridade-paragrafo, .teste-desc, .garanta-aviso {
        font-size: 1em !important;
    }
    header {
        min-height: unset !important;
        height: auto !important;
        padding: 0 !important;
        display: block !important;
        position: relative !important;
        background-size: cover !important;
        background-position: center !important;
        text-align: center !important;

        & a
        {
            width: 100%;
        }
    }
    header #opacidade {
        height: 24.5vh !important;
    }
    header > div:not(#opacidade) {
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 8px !important;
        background: none !important;
        box-sizing: border-box !important;
    }
    header h1, header h2, header h4 {
        width: 100% !important;
        margin: 0 0 10px 0 !important;
        padding: 0 !important;
        word-break: break-word !important;
        background: none !important;
    }
    header h1 {
        font-size: 2.9em !important;
    }
    header button {
        margin-top: 12px !important;
        z-index: 2 !important;
    }
    #bloco1, #bloco2, #bloco3, #bloco4, #tela-vendas, #autoridade, #teste-sem-risco, #garanta-vaga {
        width: 100% !important;
        margin: 0 0 22px 0 !important;
        padding: 20px 12px 20px 12px !important;
        box-sizing: border-box !important;
        background-clip: padding-box !important;
    }
    #bloco1 > div, #bloco4 > div, .autoridade-container, .vendas-precos {
        display: flex !important;
        flex-direction: column !important;
        gap: 10px !important;
        align-items: stretch !important;
    }
    .autoridade-img-col, .autoridade-text-col {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    .autoridade-img {
        width: 100% !important;
        max-width: 100vw !important;
        height: auto !important;
        margin: 0 auto 10px auto !important;
        display: block !important;
        border-radius: 10px !important;
    }
    .autoridade-text-col {
        padding: 0 10px !important;
        align-items: flex-start !important;
        text-align: left !important;
    }
    .autoridade-titulo, .vendas-titulo, .garanta-titulo, .teste-titulo {
        font-size: 1.3em !important;
        margin-bottom: 12px !important;
        word-break: break-word !important;
    }
    .autoridade-metodo {
        font-size: 1em !important;
        padding-left: 10px !important;
        border-left-width: 2px !important;
        margin-bottom: 12px !important;
    }
    .vendas-lista {
        width: 100% !important;
        padding: 0 !important;
    }
    .vendas-lista li {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        font-size: 1em !important;
        margin-bottom: 14px !important;
        padding: 6px 0 !important;
        word-break: break-word !important;
    }
    .vendas-total span {
        font-size: 1.3em !important;
        font-weight: 700 !important;
    }
    .vendas-chama {
        font-size: 1.2em !important;
        margin-right: 4px !important;
    }
    .vendas-promocional {
        font-size: 1.2em !important;
        padding: 8px 14px !important;
        border-radius: 10px !important;
    }
    .vendas-parcelado {
        font-size: 1.1em !important;
        padding: 6px 10px !important;
        border-radius: 10px !important;
        border-width: 1px !important;
        gap: 4px !important;
    }
    .vendas-parcela {
        font-size: 2em !important;
        font-weight: 700 !important;
        margin-left: 2px !important;
    }
    .vendas-botao, .garanta-botao, button {
        width: 100% !important;
        padding: 14px 0 !important;
        font-size: 1.1em !important;
        margin: 12px 0 0 0 !important;
        word-break: break-word !important;
    }
    .garanta-box, .teste-box, .content {
        width: 100% !important;
        padding: 16px 10px !important;
        margin: 0 0 22px 0 !important;
        box-sizing: border-box !important;
    }
    .material-symbols-outlined {
        font-size: 30px !important;
        margin-bottom: 8px !important;
    }
    html, body {
        overflow-x: hidden !important;
    }
    /* Bloco de Pré-Requisitos */
    #preRequisito {
        padding: 14px 6px !important;
        margin-top: 28px !important;
    }
    #preRequisito > div {
        gap: 10px !important;
    }
    #preRequisito > div > div {
        flex-direction: column !important;
        align-items: center !important;
        height: auto !important;
        padding: 8px 6px !important;
        margin-bottom: 8px !important;
        background-color: #00fc0021 !important;
    }
    #preRequisito .material-symbols-outlined {
        font-size: 22px !important;
        margin-right: 8px !important;
    }
    #preRequisito p {
        font-size: 1em !important;
        margin: 0 0 6px 0 !important;
        text-align: center !important;
        word-break: break-word !important;
    }
    #preRequisito h2 {
        font-size: 1.1em !important;
        margin-bottom: 10px !important;
    }

    .paraQuem
    {
        padding: 10px 20px 10px 20px !important;
    }

/* --- Media Query para 320px (mobile muito pequeno) --- */
@media (max-width: 320px) {
    /* Bloco de Pré-Requisitos */
    #preRequisito {
        padding: 10px 2px !important;
        margin-top: 24px !important;
    }
    #preRequisito > div {
        gap: 8px !important;
    }
    #preRequisito > div > div {
        flex-direction: column !important;
        align-items: center !important;
        height: auto !important;
        padding: 6px 4px !important;
        margin-bottom: 6px !important;
        background-color: #00fc0021 !important;
    }
    #preRequisito .material-symbols-outlined {
        font-size: 20px !important;
        margin-right: 6px !important;
    }
    #preRequisito p {
        font-size: 0.9em !important;
        margin: 0 0 4px 0 !important;
        text-align: center !important;
        word-break: break-word !important;
    }
    #preRequisito h2 {
        font-size: 1.25em !important;
        margin-bottom: 8px !important;
    }
    /* Ajuste vendas total, chama e parcelado */
    .vendas-total span {
        font-size: 1.2em !important;
        font-weight: 700 !important;
    }
    .vendas-chama {
        font-size: 1.1em !important;
        margin-right: 4px !important;
    }
    .vendas-promocional {
        font-size: 1.1em !important;
        padding: 6px 10px !important;
        border-radius: 8px !important;
    }
    .vendas-parcelado {
        font-size: 1em !important;
        padding: 4px 8px !important;
        border-radius: 8px !important;
        border-width: 1px !important;
        gap: 2px !important;
    }
    .vendas-parcela {
        font-size: 2em !important;
        font-weight: 700 !important;
        margin-left: 2px !important;
    }
    body {
        font-size: 13px;
    }
    h1 {
        font-size: 2.0em !important;
    }
    h2 {
        font-size: 1em !important;
    }
    h4 {
        font-size: 0.95em !important;
    }
    p, .autoridade-desc, .autoridade-paragrafo, .teste-desc, .garanta-aviso {
        font-size: 0.9em !important;
    }
    /* Oculta a div de opacidade do header sem mexer no HTML */
    header #opacidade {
        height: 22.5vh !important;
    }
    /* Header */
    header {
        min-height: unset !important;
        height: 40vh !important;
        padding: 0 !important;
        display: block !important;
        position: relative !important;
        background-size: cover !important;
        background-position: center !important;
        text-align: center !important;

        & a
        {
            width: 100%;
        }
    }
    header #opacidade {
        position: absolute !important;
        top: 0; left: 0; right: 0; bottom: 0;
        width: 100vw !important;
        height: 100% !important;
        min-height: 120px !important;
        background: rgba(0,0,0,0.6) !important;
        opacity: 0.8 !important;
        z-index: 1 !important;
        pointer-events: none;
    }
    header > div:not(#opacidade) {
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
        margin: 0 auto !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 8px !important;
        background: none !important;
        box-sizing: border-box;
    }
    header h1, header h2, header h4 {
        width: 100% !important;
        margin: 0 0 8px 0 !important;
        padding: 0 !important;
        word-break: break-word !important;
        background: none !important;
    }
    header h1 {
        font-size: 2.9em !important;
    }
    header button {
        margin-top: 10px !important;
        z-index: 2 !important;
    }
    /* Blocos principais */
    #bloco1, #bloco2, #bloco3, #bloco4, #tela-vendas, #autoridade, #teste-sem-risco, #garanta-vaga {
        width: 100% !important;
        margin: 0 0 18px 0 !important;
        padding: 16px 10px 16px 10px !important;
        box-sizing: border-box !important;
        background-clip: padding-box !important;
    }
    /* Flexbox e colunas */
    #bloco1 > div, #bloco4 > div, .autoridade-container, .vendas-precos {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px !important;
        align-items: stretch !important;
    }
    .autoridade-img-col, .autoridade-text-col {
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }
    .autoridade-img {
        width: 100% !important;
        max-width: 100vw !important;
        height: auto !important;
        margin: 0 auto 8px auto !important;
        display: block !important;
        border-radius: 10px !important;
    }
    .autoridade-text-col {
        padding: 0 8px !important;
        align-items: flex-start !important;
        text-align: left !important;
    }
    .autoridade-titulo, .vendas-titulo, .garanta-titulo, .teste-titulo {
        font-size: 1.1em !important;
        margin-bottom: 14px !important;
        word-break: break-word !important;
    }
    .autoridade-metodo {
        font-size: 0.95em !important;
        padding-left: 10px !important;
        border-left-width: 2px !important;
        margin-bottom: 10px !important;
    }
    /* Listas e itens */
    .vendas-lista {
        width: 100% !important;
        padding: 0 !important;
    }
    .vendas-lista li {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
        font-size: 0.95em !important;
        margin-bottom: 14px !important;
        padding: 6px 0 !important;
        word-break: break-word !important;
    }
    /* Botões */
    .vendas-botao, .garanta-botao, button {
        width: 100% !important;
        padding: 14px 0 !important;
        font-size: 1.05em !important;
        margin: 12px 0 0 0 !important;
        word-break: break-word !important;
    }
    /* Caixas e containers */
    .garanta-box, .teste-box, .content {
        width: 100% !important;
        padding: 14px 8px !important;
        margin: 0 0 18px 0 !important;
        box-sizing: border-box !important;
    }
    /* Ícones */
    .material-symbols-outlined {
        font-size: 28px !important;
        margin-bottom: 6px !important;
    }
    /* Ajuste para evitar overflow horizontal */
    html, body {
        overflow-x: hidden !important;
    }

    }
    .paraQuem
    {
        padding: 10px 20px 10px 20px !important;
    }
}

.vendas-total-box {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 15px;
    justify-content: flex-end;
    width: 100%;
}
.vendas-total-label {
    color: #b0b0b0;
    font-size: 1rem;
    font-weight: 400;
    margin-right: 2px;
}
.vendas-total-valor {
    color: #b0b0b0;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: line-through;
    letter-spacing: 0.5px;
}
.vendas-precos {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 18px;
    width: 100%;
}
.vendas-parcelado.novo {
    background: none;
    color: #00e5ff;
    font-size: 1.6rem;
    font-weight: 900;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    position: relative;
    margin-bottom: 2px;
    justify-content: center;
}
.vendas-parcelado-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #b3fdb3;
    margin-right: 2px;
}
.vendas-parcela {
    color: #00fc00;
    font-size: 2rem;
    font-weight: 900;
    margin-left: 2px;
}
.vendas-promocional.novo {
    display: flex;
    align-items: center;
    background: #232b36;
    color: #b0b0b0;
    font-size: 1.1rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: 8px;
    box-shadow: none;
    margin-right: 0;
    position: relative;
    gap: 8px;
    justify-content: center;
}
@media (max-width: 426px) {
    .vendas-precos {
        gap: 4px;
        margin-bottom: 12px;
    }
    .vendas-total-box {
        font-size: 0.95rem;
        margin-bottom: 30px;
        justify-content: flex-start;
    }
    .vendas-parcelado.novo {
        font-size: 1.1rem;
        margin-bottom: 0;
    }
    .vendas-parcela {
        font-size: 1.3rem;
    }
    .vendas-promocional.novo {
        font-size: 0.95rem;
        padding: 2px 8px;
    }
}