.container_lista_favoritos{
    background-color: white;
    display: flex;
    align-items: start;
    flex-direction: column;
    gap: 1.2rem;
    padding: 1rem;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    width: 100%;
    box-sizing: border-box;
}

.container_notificacoes{
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    margin: 1rem;
}

.titulo_notificacao{
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

.div_icones{
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.input_buscar{
    flex: 1;
    outline: none;
    border: none;
    padding: 0.6rem 0.8rem;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    padding-left: 2.2rem;
}

.icone_cidade{
    color: #00000052;
    width: 16px;
}

.div_input{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1rem;
    position: relative;
}

.icone_busca{
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(0, 0, 0, 0.4);
}

.descricao_notificacao{
    font-size: 16px;
    margin: 0;
    font-weight: 500;
}

.div_btns_favoritos{
    display: flex;
    justify-content: space-between;
}

.div_deitados_favoritos{
    display: flex;
    justify-content: space-between;
}

.data_notificacao{
    font-size: 14px;
    margin: 0;
    font-weight: 500;
    align-self: flex-end;
}

.img_favorito{
    width: 120px;
    height: 120px;
    border-radius: 10px;
}

.favorito_cidade{
    background-image: linear-gradient(to right, #0d9488, #228fe9);
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 1rem;
    box-sizing: border-box;
}

.card_favoritos{
    display: flex;
    width: 100%;
}

.fa-star{
    color: #facc15;
}

.div_favorito_informacoes{
    display: flex;
    flex-direction: column;
    width: 100%;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    justify-content: space-between;
    flex: 1;
    box-sizing: border-box;
}

.btn_detalhes{
    background-color: black;
    color: white;
    border: none;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    padding: 0.6rem 0.8rem;
    cursor: pointer;
}

.btn_avaliar{
    background-color: #208FE1;
    color: white;
    border: none;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    padding: 0.6rem 0.8rem;
    cursor: pointer;
    display: none;
}

.texto_modal {
    margin: 0;
    margin-top: 15px;
}

.titulo_listagem_cidade{
    margin: 0;
    color: white;
    font-weight: 500;
}

.modal-estrelas {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.div_avaliacao_local{
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.texto_nota{
    font-weight: 400;
    font-size: 16px;
    margin: 0;
}


.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    background-color: #fff;
    padding: 20px 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0,0,0,0.3);
    max-width: 300px;
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 1rem;
}

.modal-estrelas i {
    font-size: 2rem;
    color: #ccc;
    cursor: pointer;
    transition: color 0.2s;
}

.modal-estrelas i.selecionada {
    color: gold;
}


.textarea_avaliacao {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    resize: none;
    outline: none;
    width: 100%;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

.btn_enviar_avaliacao{
    width: 100%;
    background-color: #0d9488;
    cursor: pointer;
    color: white;
    border: none;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    padding: 0.6rem 0.8rem;
    margin-top: 0.8rem;
}

.btn_pular_avaliacao{
    width: 100%;
    cursor: pointer;
    color: white;
    border: none;
    font-family: 'Poppins', sans-serif;
    border-radius: 4px;
    padding: 0.6rem 0.8rem;
    margin-top: 0.8rem;
        background-color: #ff0000cc;
}

.fa-xmark{
    align-self: flex-end;
    font-size: 18px;
    color: #000000b8;
    cursor: pointer;
}


@media (max-width: 600px){
    .card_favoritos{
        flex-direction: column;
    }

    .div_btns_favoritos{
        flex-direction: column;
        gap: 0.5rem;
    }

    .img_favorito{
        width: 100%;
        height: auto;
        max-height: 350px;
    }

    .div_deitados_favoritos{
        flex-wrap: wrap;
        margin-top: 0.5rem;
        margin-bottom: 0.5rem;
    }
}