#maiola-pesquisa,
#maiola-pesquisa * {
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

#maiola-pesquisa {
    width: 100%;
    padding: 24px;
}

#maiola-pesquisa .mp-card {
    width: 60vw;

    margin: auto;

    background: var(--fundo-card);

    border-radius: 50px;
    overflow: hidden;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* =========================================
   TELAS
========================================= */

#maiola-pesquisa .mp-screen {
    display: none;

    flex-direction: column;
}

#maiola-pesquisa .mp-screen.active {
    display: flex;

    animation: mpFade 0.25s ease;
}

@keyframes mpFade {

    from {
        opacity: 0;
        transform: translateX(10px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }

}


/* =========================================
   CABEÇALHO DAS ETAPAS
========================================= */

#maiola-pesquisa .mp-header {
    padding: 25px 35px 15px;

    display: flex;
    justify-content: space-between;
    align-items: center;
}

#maiola-pesquisa .mp-step-title {
    color: var(--azul);

    font-weight: 700;
}

#maiola-pesquisa .mp-step-count {
    color: var(--azul);

    font-size: 13px;
    font-weight: 700;
}


/* =========================================
   PROGRESSO
========================================= */

#maiola-pesquisa .mp-progress {
    height: 5px;

    margin: 0 35px;

    background: var(--borda-suave);

    border-radius: 99px;

    overflow: hidden;
}

#maiola-pesquisa .mp-progress div {
    height: 100%;

    background: var(--amarelo);

    border-radius: inherit;
}


/* =========================================
   CONTEÚDO
========================================= */

#maiola-pesquisa .mp-content {
    flex: 1;

    padding: 40px 35px;
}

#maiola-pesquisa .mp-content h2 {
    max-width: 620px;

    margin: 0 auto 30px;

    text-align: center;

    color: var(--azul-escuro);

    font-size: 25px;
    line-height: 1.3;
}


/* =========================================
   OPÇÕES
========================================= */

#maiola-pesquisa .mp-options {
    width: 100%;
}

#maiola-pesquisa .mp-grid-2 {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 14px;
}

#maiola-pesquisa .mp-list {
    max-width: 600px;

    margin: auto;

    display: flex;
    flex-direction: column;

    gap: 10px;
}

#maiola-pesquisa .mp-option {
    min-height: 58px;

    padding: 14px 18px;

    background: var(--branco);

    border: 1px solid var(--borda);

    border-radius: 9px;

    color: var(--azul-escuro);

    cursor: pointer;

    font-size: 14px;

    transition: 0.18s ease;
}

#maiola-pesquisa .mp-option:hover {
    border-color: var(--azul);
}

#maiola-pesquisa .mp-option.selected {
    border-color: var(--azul);

    background: var(--fundo-selecionado);

    box-shadow: 0 0 0 1px var(--azul);
}


/* =========================================
   NAVEGAÇÃO
========================================= */

#maiola-pesquisa .mp-navigation {
    padding: 20px 35px;

    border-top: 1px solid var(--borda-suave);

    display: flex;
    justify-content: space-between;
}

#maiola-pesquisa .mp-btn-primary,
#maiola-pesquisa .mp-btn-secondary {
    min-height: 48px;

    padding: 0 25px;

    border-radius: 8px;

    cursor: pointer;

    font-size: 13px;
    font-weight: 800;

    transition: 0.18s ease;
}

#maiola-pesquisa .mp-btn-primary {
    border: 0;

    background: var(--azul);

    color: var(--branco);
}

#maiola-pesquisa .mp-btn-secondary {
    background: var(--branco);

    border: 1px solid var(--borda);

    color: var(--azul);
}

#maiola-pesquisa .mp-btn-primary:disabled {
    opacity: 0.35;

    cursor: not-allowed;
}


/* =========================================
   MOBILE
========================================= */

@media (max-width: 767px) {

    #maiola-pesquisa {
        padding: 10px;
    }

    #maiola-pesquisa .mp-card {
        width: 100%;
    }

    #maiola-pesquisa .mp-content {
        padding: 35px 20px;
    }

    #maiola-pesquisa .mp-header {
        padding: 20px 20px 12px;
    }

    #maiola-pesquisa .mp-progress {
        margin: 0 20px;
    }

    #maiola-pesquisa .mp-navigation {
        padding: 15px 20px;
    }

    #maiola-pesquisa .mp-grid-2 {
        grid-template-columns: 1fr;
    }

}