/* =====================================================
   RESET
===================================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    min-height: 100vh;

    font-family:
        Arial,
        Helvetica,
        sans-serif;

    background:
        linear-gradient(
            180deg,
            #fff4f8 0%,
            #ffffff 45%,
            #fffafb 100%
        );

    color: #333;

}


/* =====================================================
   CABEÇALHO
===================================================== */

.cabecalho {

    width: 100%;

    padding:
        25px
        15px
        20px;

    text-align: center;

    border-bottom:
        2px solid #f7dce6;

}


/* =====================================================
   ÁREA DA LOGO
===================================================== */

.logo-area {

    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    gap: 8px;

}


/* =====================================================
   LOGO
===================================================== */

.logo-img {

    display: block;

    width: auto;

    max-width: 320px;

    max-height: 150px;

    height: auto;

    object-fit: contain;

}


/* =====================================================
   CONTEÚDO
===================================================== */

.conteudo {

    width: 100%;

    max-width: 850px;

    margin: 0 auto;

    padding:
        15px
        20px
        35px;

}


/* =====================================================
   TÍTULO
===================================================== */

.titulo {

    text-align: center;

    margin:
        12px
        0
        30px;

}


.titulo .emoji {

    display: block;

    font-size: 48px;

    margin-bottom: 6px;

}


.titulo h2 {

    font-size: 34px;

    line-height: 1.15;

    font-weight: 900;

    color: #333;

}


.titulo p {

    margin-top: 8px;

    font-size: 19px;

    line-height: 1.4;

    color: #777;

}


/* =====================================================
   OPÇÕES
===================================================== */

.opcoes {

    display: flex;

    flex-direction: column;

    gap: 16px;

    margin-bottom: 32px;

}


.card-opcao {

    display: flex;

    align-items: center;

    gap: 20px;

    width: 100%;

    min-height: 115px;

    padding:
        20px
        23px;

    border-radius: 23px;

    background: #ffffff;

    border:
        2px solid #eeeeee;

    text-decoration: none;

    box-shadow:
        0 7px 22px
        rgba(0,0,0,.07);

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;

}


.card-opcao:hover {

    transform: translateY(-3px);

    box-shadow:
        0 12px 28px
        rgba(0,0,0,.10);

}


.card-opcao:active {

    transform: scale(.99);

}


.card-opcao.principal {

    border-color: #ff9cbd;

    background:
        linear-gradient(
            135deg,
            #fff0f6,
            #ffffff
        );

}


/* =====================================================
   ÍCONE DAS OPÇÕES
===================================================== */

.card-opcao .icone {

    width: 70px;

    height: 70px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 20px;

    background: #fff1f6;

    font-size: 37px;

}


.card-opcao.principal .icone {

    background: #ff6fa3;

}


/* =====================================================
   TEXTO DAS OPÇÕES
===================================================== */

.card-opcao .texto {

    flex: 1;

}


.card-opcao h3 {

    font-size: 23px;

    line-height: 1.2;

    font-weight: 900;

    color: #333;

}


.card-opcao p {

    margin-top: 7px;

    font-size: 17px;

    line-height: 1.4;

    color: #666;

}


/* =====================================================
   SETA
===================================================== */

.seta {

    flex-shrink: 0;

    font-size: 36px;

    font-weight: 900;

    color: #ff6fa3;

}


/* =====================================================
   BENEFÍCIOS
===================================================== */

.beneficios {

    width: 100%;

}


.beneficios > h3 {

    margin-bottom: 18px;

    font-size: 25px;

    line-height: 1.2;

    font-weight: 900;

    color: #333;

}


/* =====================================================
   BENEFÍCIO
===================================================== */

.beneficio {

    position: relative;

    display: flex;

    align-items: center;

    gap: 18px;

    width: 100%;

    min-height: 105px;

    padding:
        18px
        20px;

    margin-bottom: 14px;

    border-radius: 22px;

    background: #ffffff;

    border:
        2px solid #eeeeee;

    box-shadow:
        0 6px 19px
        rgba(0,0,0,.06);

}


/* =====================================================
   BENEFÍCIO AUTOMÁTICO
===================================================== */

.beneficio-automatico {

    border-color: #ff9cbd;

    background:
        linear-gradient(
            135deg,
            #fff0f6,
            #ffffff
        );

    box-shadow:
        0 8px 22px
        rgba(255,111,163,.12);

}


/* =====================================================
   ÍCONE DO BENEFÍCIO
===================================================== */

.beneficio-icone {

    width: 68px;

    height: 68px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 19px;

    background: #fff1f6;

    font-size: 35px;

}


/* =====================================================
   TEXTO DO BENEFÍCIO
===================================================== */

.beneficio-texto {

    flex: 1;

}


.beneficio-texto strong {

    display: block;

    margin-top: 6px;

    font-size: 22px;

    line-height: 1.25;

    font-weight: 900;

    color: #333;

}


.beneficio-texto p {

    margin-top: 6px;

    font-size: 16px;

    line-height: 1.4;

    color: #777;

}


/* =====================================================
   TAG
===================================================== */

.beneficio-tag {

    display: inline-block;

    padding:
        6px
        11px;

    border-radius: 20px;

    background: #ff6fa3;

    color: #ffffff;

    font-size: 12px;

    line-height: 1;

    font-weight: 900;

    letter-spacing: .4px;

}


.beneficio-tag.escolha {

    background: #f0f0f0;

    color: #666;

}


/* =====================================================
   CHECK
===================================================== */

.beneficio-check {

    width: 44px;

    height: 44px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #ff6fa3;

    color: #ffffff;

    font-size: 25px;

    font-weight: 900;

}


/* =====================================================
   TÍTULO ESCOLHA
===================================================== */

.titulo-escolha {

    display: flex;

    align-items: center;

    gap: 10px;

    margin:
        25px
        0
        15px;

    padding:
        6px
        3px;

    font-size: 21px;

    line-height: 1.3;

    color: #444;

}


.titulo-escolha span {

    font-size: 27px;

}


/* =====================================================
   BENEFÍCIOS ESCOLHÍVEIS
===================================================== */

.beneficio-escolha {

    cursor: default;

    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;

}


.beneficio-escolha:hover {

    transform: translateY(-2px);

    border-color: #ffc1d5;

    box-shadow:
        0 9px 22px
        rgba(0,0,0,.08);

}


/* =====================================================
   BOTÃO INÍCIO
===================================================== */

.botao-inicio {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    min-height: 60px;

    margin-top: 28px;

    padding:
        10px
        20px;

    border-radius: 18px;

    background: #eeeeee;

    color: #555;

    text-decoration: none;

    font-size: 17px;

    line-height: 1.2;

    font-weight: 900;

    transition:
        background .2s ease,
        transform .2s ease;

}


.botao-inicio:hover {

    background: #e2e2e2;

    transform: translateY(-2px);

}


.botao-inicio:active {

    transform: scale(.99);

}


/* =====================================================
   RODAPÉ
===================================================== */

footer {

    text-align: center;

    padding:
        12px
        20px
        25px;

    color: #999;

    font-size: 14px;

}


footer span {

    margin:
        0
        6px;

}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 800px) {


    .cabecalho {

        padding:
            24px
            15px
            20px;

    }


    .logo-img {

        max-width: 290px;

        max-height: 140px;

    }



    .conteudo {

        padding-left: 18px;

        padding-right: 18px;

    }


    .titulo h2 {

        font-size: 32px;

    }


    .card-opcao {

        min-height: 110px;

    }


}


/* =====================================================
   CELULAR
===================================================== */

@media (max-width: 600px) {


    .cabecalho {

        padding:
            20px
            12px
            18px;

    }


    .logo-img {

        max-width: 250px;

        max-height: 120px;

    }


    .conteudo {

        padding:
            14px
            13px
            30px;

    }


    .titulo {

        margin:
            10px
            0
            25px;

    }


    .titulo .emoji {

        font-size: 42px;

    }


    .titulo h2 {

        font-size: 29px;

    }


    .titulo p {

        font-size: 17px;

    }


    /* =================================================
       OPÇÕES
    ================================================= */

    .opcoes {

        gap: 13px;

        margin-bottom: 28px;

    }


    .card-opcao {

        min-height: 105px;

        padding:
            17px
            15px;

        gap: 13px;

        border-radius: 20px;

    }


    .card-opcao .icone {

        width: 60px;

        height: 60px;

        border-radius: 17px;

        font-size: 32px;

    }


    .card-opcao h3 {

        font-size: 20px;

    }


    .card-opcao p {

        font-size: 15px;

        margin-top: 5px;

    }


    .seta {

        font-size: 30px;

    }


    /* =================================================
       BENEFÍCIOS
    ================================================= */

    .beneficios > h3 {

        font-size: 23px;

        margin-bottom: 16px;

    }


    .beneficio {

        min-height: 100px;

        padding:
            16px
            14px;

        gap: 13px;

        border-radius: 19px;

    }


    .beneficio-icone {

        width: 58px;

        height: 58px;

        border-radius: 16px;

        font-size: 30px;

    }


    .beneficio-texto strong {

        font-size: 19px;

    }


    .beneficio-texto p {

        font-size: 14px;

    }


    .beneficio-tag {

        font-size: 10px;

        padding:
            5px
            9px;

    }


    .beneficio-check {

        width: 38px;

        height: 38px;

        font-size: 21px;

    }


    /* =================================================
       ESCOLHA
    ================================================= */

    .titulo-escolha {

        font-size: 19px;

        margin-top: 22px;

    }


    .titulo-escolha span {

        font-size: 24px;

    }


    /* =================================================
       BOTÃO
    ================================================= */

    .botao-inicio {

        min-height: 58px;

        font-size: 16px;

    }


    footer {

        font-size: 13px;

    }

}


/* =====================================================
   CELULAR PEQUENO
===================================================== */

@media (max-width: 380px) {


    .cabecalho {

        padding:
            17px
            10px
            16px;

    }


    .logo-img {

        max-width: 215px;

        max-height: 105px;

    }


    .conteudo {

        padding-left: 10px;

        padding-right: 10px;

    }


    .titulo h2 {

        font-size: 26px;

    }


    .titulo p {

        font-size: 15px;

    }


    .card-opcao {

        padding:
            15px
            12px;

    }


    .card-opcao .icone {

        width: 54px;

        height: 54px;

        font-size: 28px;

    }


    .card-opcao h3 {

        font-size: 18px;

    }


    .card-opcao p {

        font-size: 13px;

    }


    .seta {

        font-size: 27px;

    }


    .beneficio {

        padding:
            14px
            11px;

    }


    .beneficio-icone {

        width: 52px;

        height: 52px;

        font-size: 27px;

    }


    .beneficio-texto strong {

        font-size: 17px;

    }


    .beneficio-texto p {

        font-size: 13px;

    }


    .beneficio-check {

        width: 34px;

        height: 34px;

        font-size: 18px;

    }


    .botao-inicio {

        min-height: 55px;

        font-size: 15px;

    }

}