/* =========================================
   TELA 00 - INÍCIO
========================================= */

#maiola-pesquisa [data-screen="0"] .mp-intro {
    overflow: hidden;

    border-radius: 50px;
}


/* =========================================
   CABEÇALHO AZUL
========================================= */

#maiola-pesquisa [data-screen="0"] .mp-intro-header {
    padding: 42px 40px;

    display: flex;
    justify-content: center;

    background: var(--azul);
}

#maiola-pesquisa [data-screen="0"] .mp-logo {
    width: 250px;
}


/* =========================================
   CONTEÚDO
========================================= */

#maiola-pesquisa [data-screen="0"] .mp-intro-content {
    padding: 28px 40px 52px;

    display: flex;
    flex-direction: column;
    align-items: center;

    text-align: center;
}


/* =========================================
   TÍTULO
========================================= */

#maiola-pesquisa [data-screen="0"] h1 {
    margin: 0;

    color: var(--azul);

    font-size: 55px;
    font-weight: 700;
    line-height: 1.15;
}


/* =========================================
   DESCRIÇÃO
========================================= */

#maiola-pesquisa [data-screen="0"] .mp-description {
    margin: 10px 0 0;

    color: var(--cinza);

    font-size: 20px;
    font-weight: 300;
    line-height: 1.55;
}


/* =========================================
   BLOCO DE TEMPO
========================================= */

#maiola-pesquisa [data-screen="0"] .mp-time-card {
    width: 350px;

    margin-top: 38px;
    padding: 12px 12px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;

    background: var(--fundo-suave);

    border-radius: 18px;
}


/* =========================================
   ÍCONE RELÓGIO
========================================= */

#maiola-pesquisa [data-screen="0"] .mp-time-icon {
    width: 34px;
    height: 34px;

    background-color: var(--azul);

    -webkit-mask: var(--icone-relogio) center / contain no-repeat;
    mask: var(--icone-relogio) center / contain no-repeat;
}


/* =========================================
   SEPARADOR
========================================= */

#maiola-pesquisa [data-screen="0"] .mp-time-separator {
    width: 1.4px;
    height: 28px;

    background: var(--azul);
    border-radius: 99px;
}


/* =========================================
   TEXTO DO TEMPO
========================================= */

#maiola-pesquisa [data-screen="0"] .mp-time-text {
    color: var(--azul);

    font-size: 17px;
    font-weight: 500;

    text-align: left;
}


/* =========================================
   BOTÃO COMEÇAR
========================================= */

#maiola-pesquisa [data-screen="0"] .mp-start-button {
    width: 280px;
    height: 62px;

    margin-top: 38px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    border: 0;
    border-radius: 999px;

    background: var(--amarelo);
    color: var(--azul);

    font-size: 22px;
    font-weight: 500;

    cursor: pointer;
}


/* =========================================
   SETA
========================================= */

#maiola-pesquisa [data-screen="0"] .mp-start-arrow {
    width: 38px;
    height: 38px;

    background-color: var(--azul);

    -webkit-mask: var(--icone-seta) center / contain no-repeat;
    mask: var(--icone-seta) center / contain no-repeat;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    #maiola-pesquisa [data-screen="0"] .mp-intro-header {
        padding: 30px 20px;
    }

    #maiola-pesquisa [data-screen="0"] .mp-logo {
        width: 230px;
    }

    #maiola-pesquisa [data-screen="0"] .mp-intro-content {
        padding: 28px 20px 36px;
    }

    #maiola-pesquisa [data-screen="0"] h1 {
        font-size: 32px;
    }

    #maiola-pesquisa [data-screen="0"] .mp-description {
        font-size: 15px;
    }

    #maiola-pesquisa [data-screen="0"] .mp-time-card {
        width: 360px;

        padding: 10px 16px;
    }

    #maiola-pesquisa [data-screen="0"] .mp-start-button {
        width: 280px;
        height: 58px;

        font-size: 18px;
    }

}